https://github.com/drogbadvc/st-wordcloud
Streamlit WordCloud React D3
https://github.com/drogbadvc/st-wordcloud
d3js streamlit wordcloud wordcloud-visualization
Last synced: 7 months ago
JSON representation
Streamlit WordCloud React D3
- Host: GitHub
- URL: https://github.com/drogbadvc/st-wordcloud
- Owner: drogbadvc
- License: mit
- Created: 2023-11-10T19:41:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-10T19:52:34.000Z (about 2 years ago)
- Last Synced: 2025-04-17T14:36:47.893Z (9 months ago)
- Topics: d3js, streamlit, wordcloud, wordcloud-visualization
- Language: Python
- Homepage: https://pypi.org/project/st-wordcloud/
- Size: 278 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Streamlit - WordCloud React
A Streamlit simple component to display [WordCloud](https://www.npmjs.com/package/react-d3-cloud).

## 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)