Metadata-Version: 2.1
Name: streamlit-aggrid-pro
Version: 0.2.0
Summary: Streamlit component implementation of ag-grid-pro
Home-page: https://github.com/llllyang123/streamlit-aggrid-pro
Author: Pablo Fonseca
Author-email: yangxiaochuang2@163.com
Requires-Python: >=3.7.1,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Requires-Dist: pandas (>=1.2)
Requires-Dist: python-decouple (>=3.6,<4.0)
Requires-Dist: python-dotenv (>=0.19.1,<0.20.0)
Requires-Dist: simplejson (>=3.0)
Requires-Dist: streamlit (>=0.87.0)
Description-Content-Type: text/markdown

# streamlit-aggrid


<br>

# Install
```
pip install streamlit-aggrid-pro

```

# Quick Use
Create an example.py file
```python
from st_aggrid_pro import AgGrid
import pandas as pd

df = pd.read_csv('https://raw.githubusercontent.com/fivethirtyeight/data/master/airline-safety/airline-safety.csv')
AgGrid(df)
```
Run :
```shell
streamlit run example.py
```

