Alternative to `st.table` with configuration displaying Pandas DataFrame
Project description
Streamlit dataframe display
alternative to st.table
with configuration displaying Pandas DataFrame
Installation instructions
pip install st-df-table
Usage instructions
import pandas as pd
from st_df_table import st_table
data = {
"Column A": [1, 2, 3, 4, 5, 6],
"Column C": [True, False, True, False, True, False],
"Column B": ["A", "B", "C", "F", "G", "H"],
}
df = pd.DataFrame(data)
st_table(df)
st_table(
df,
head_align="left",
data_align="left",
head_bg_color="red",
head_color="blue",
head_font_weight="normal",
border_color="red",
border_width="3",
)
st_table(
df,
head_align="right",
data_align="right",
data_bg_color="green",
data_color="yellow",
data_font_weight="bold",
bordered=False,
sortable=False,
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
st_df_table-0.0.3.tar.gz
(644.8 kB
view details)
Built Distribution
st_df_table-0.0.3-py3-none-any.whl
(650.3 kB
view details)
File details
Details for the file st_df_table-0.0.3.tar.gz
.
File metadata
- Download URL: st_df_table-0.0.3.tar.gz
- Upload date:
- Size: 644.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a61b13eaa2740e1836c29b866058bb68ddef41566f053c4292f6dbbb9dc260d |
|
MD5 | bbbfa5a7b4ef01be8e6dd36c3fdae17f |
|
BLAKE2b-256 | e95b04db5659bee218c6619df8a54ee139c9239db26d3d566148015fa9afbf94 |
File details
Details for the file st_df_table-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: st_df_table-0.0.3-py3-none-any.whl
- Upload date:
- Size: 650.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0d2c09f04e42f32ee3ca2370b803fe0f05e33ae3f27b3b154760564b4d49000 |
|
MD5 | ed101e50fe3c7769b6976601c0592f1c |
|
BLAKE2b-256 | 86da3ff9ceeae182d628a770913352a487f24383f087cc5adff7ab06c88cd698 |