Metadata-Version: 2.1
Name: streamlit-excel-table
Version: 0.1.4
Summary: Streamlit component implementation of react-awesome-table
Home-page: https://github.com/tk42/streamlit-excel-table
Author: tk42
Author-email: nsplat+pip@gmail.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Streamlit-Excel-Table

react-awesome-table is a great table 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
from st_excel_table import Table

st.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"},
]

columns = [
    {"name": "id"},
    {"name": "x"},
    {"name": "y"},
    {"name": "color"},
]

options = {"sortable": False, "filterable": False}

Table(data=data, columns=columns, options=options)
```

![sample](./sample.png)
