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,
)
import string
import numpy as np
import pandas as pd
from st_df_table import st_table
df = pd.DataFrame(
{
"Column A": list(range(1, 101)),
"Column B": np.random.choice(list(string.ascii_uppercase), size=100),
"Column C": np.random.rand(100),
}
)
st_table(
df,
border_width=4,
border_color="red",
paginated=True,
pagination_size_per_page=7,
pagination_bar_size=4,
pagination_text_color="blue",
pagination_bg_color="yellow",
pagination_border_color="green",
pagination_active_color="yellow",
)
Cloud example
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.6.tar.gz
(677.3 kB
view details)
Built Distribution
st_df_table-0.0.6-py3-none-any.whl
(682.5 kB
view details)
File details
Details for the file st_df_table-0.0.6.tar.gz
.
File metadata
- Download URL: st_df_table-0.0.6.tar.gz
- Upload date:
- Size: 677.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de4377f2436c43acbb396f659e75e382b942781ee1107bd40c7dfb224ddb8a6c |
|
MD5 | fa138ecd3a0cac6db00f910fcefe531f |
|
BLAKE2b-256 | 10853a0fff051d14ca95cbdf03140b47e12a3fb16a9b41f7378bb3561aaaf095 |
File details
Details for the file st_df_table-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: st_df_table-0.0.6-py3-none-any.whl
- Upload date:
- Size: 682.5 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 | 436a8ed673cadbcb0789c875f4ef58fc6f93f8edca8aaf0a513daa21e7861640 |
|
MD5 | a9f4c4f35f41f9f84d5e7509a6a16969 |
|
BLAKE2b-256 | 4a65bdd948b3fbff21136c3d901522d49a4e8ef13b6709678503af8dc48eb430 |