Spaces:
Runtime error
Runtime error
#!/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) |