mestreamlit / pages /997_streamlit_aggrid.py
yuanjie
update
6207b87
raw
history blame
No virus
356 Bytes
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Project : Python.
# @File : 997_streamlit_aggrid
# @Time : 2022/10/17 下午1:14
# @Author : yuanjie
# @WeChat : meutils
# @Software : PyCharm
# @Description :
from st_aggrid import AgGrid
import pandas as pd
df = pd.read_csv('./data/airline-safety.csv')
AgGrid(df)