Metadata-Version: 2.1
Name: st-wordcloud
Version: 0.0.7
Summary: st_wordcloud React component for Streamlit
Home-page: https://github.com/drogbadvc/st-wordcloud
Author: Andell
Author-email: drogadvc@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Streamlit - WordCloud React

A Streamlit simple component to display [WordCloud](https://www.npmjs.com/package/react-d3-cloud).

![](./img/demo.png)

## Install

```shell script
pip install st-wordcloud
```

## Usage

```python
from st_wordcloud import st_wordcloud

words = [{"text": "Python", "value": 500, "topic": "lol"}, {"text": "Streamlit", "value": 80},{"text": "Streamlit", "value": 80},{"text": "Streamlit", "value": 80},{"text": "Streamlit", "value": 80},{"text": "Streamlit", "value": 80},{"text": "Streamlit", "value": 80}]

st_wordcloud(words, width=800, height=600)


