Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tk42/streamlit-excel-table
Streamlit component like Microsoft Excel
https://github.com/tk42/streamlit-excel-table
component grid streamlit streamlit-component table
Last synced: 4 months ago
JSON representation
Streamlit component like Microsoft Excel
- Host: GitHub
- URL: https://github.com/tk42/streamlit-excel-table
- Owner: tk42
- License: mit
- Created: 2022-08-27T00:31:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-07T03:01:38.000Z (over 2 years ago)
- Last Synced: 2024-09-28T13:41:20.522Z (4 months ago)
- Topics: component, grid, streamlit, streamlit-component, table
- Language: Python
- Homepage: https://pypi.org/project/streamlit-excel-table/
- Size: 2.27 MB
- Stars: 17
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Streamlit-Excel-Table
This Streamlit component is a wrapper component of [@tk42/react-awesome-table](https://github.com/tk42/react-awesome-table).
```react-awesome-table``` is a great table module like Microsoft Excel for web frontend. More information in [Kazunori-Kimura/react-awesome-table](https://github.com/Kazunori-Kimura/react-awesome-table) (Thanks!)
## Install
```
pip install streamlit-excel-table
```## Overview
Streamlit-Excel-Table is a Streamlit component like Microsoft Excel.
```python
import streamlit as st
from st_excel_table import Tablest.title("Streamlit-Excel-Table")
data = [
{"id": "hoge", "x": 5.77, "y": 8.85, "color": "red"},
{"id": "hogedb", "x": 15.77, "y": 18.85, "color": "red"},
{"id": "hogeba", "x": 25.77, "y": 28.85, "color": "red"},
{"id": "hogeas", "x": 35.77, "y": 38.85, "color": "red"},
]Table(data, columns)
```![sample](./sample.png)