Metadata-Version: 2.1
Name: streamlit-chemui
Version: 0.0.1
Summary: Streamlit's chemui component
Home-page: UNKNOWN
Author: Alphama
Author-email: feichaoyuan@protonunfold.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit>=0.63
Provides-Extra: devel
Requires-Dist: wheel; extra == "devel"
Requires-Dist: pytest==7.4.0; extra == "devel"
Requires-Dist: playwright==1.48.0; extra == "devel"
Requires-Dist: requests==2.31.0; extra == "devel"
Requires-Dist: pytest-playwright-snapshot==1.0; extra == "devel"
Requires-Dist: pytest-rerunfailures==12.0; extra == "devel"

# streamlit-chemui

Streamlit component that allows you to do X

## Installation instructions

```sh
pip install streamlit-chemui
```

## Usage instructions

```python
import json
import streamlit as st

from chemui import ChemList, Smiles

DemoCSV = {
    "visual_data": [
        {
            "name": "csv的Demo名称",
            "description": "csv的Demo内容描述",
            "files": [
                {
                    "type": "CSV",
                    "name": "csv的展示名称",
                    "description": "csv的展示描述",
                    "path": "http://localhost:5500/CDK9_actives.csv",
                    "download_url": "http://localhost:5500/CDK9_actives.csv",
                    "format": "csv"
                }
            ],
            "download_url": "http://localhost:5500/CDK9_actives.csv"
        }
    ]
};

DemoCSV1 = json.dumps(DemoCSV)
ChemList(DemoCSV)
```

```python
import json
import streamlit as st

from chemui import ChemList, Smiles

Smiles("CC(=O)OC1=CC=CC=C1C(=O)O")
```

