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.4.tar.gz
(645.2 kB
view details)
Built Distribution
st_df_table-0.0.4-py3-none-any.whl
(650.7 kB
view details)
File details
Details for the file st_df_table-0.0.4.tar.gz
.
File metadata
- Download URL: st_df_table-0.0.4.tar.gz
- Upload date:
- Size: 645.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b03d2b4aea9438d4434809a1fb5bba188f57194676054ee991b375a3980c9921 |
|
MD5 | fb077031165d94feabaebdb6753b5bf6 |
|
BLAKE2b-256 | 5d7356cda76c841ec0cd28a5a689f9a67f2291617845bf93c7351d1bc4010701 |
File details
Details for the file st_df_table-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: st_df_table-0.0.4-py3-none-any.whl
- Upload date:
- Size: 650.7 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 | 2b53224fda0bbc942ee9086e680de6b71231b1a13216fcd5bad2a747ee155b30 |
|
MD5 | 4628324ac4c5f3b4857d8bbeb47cfa39 |
|
BLAKE2b-256 | 5de8cb6607538e02a00a070c9b54fada6ad4e77c8fbf757bc9760f2b40ef8823 |