Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drogbadvc/st-wordcloud
Streamlit WordCloud React D3
https://github.com/drogbadvc/st-wordcloud
d3js streamlit wordcloud wordcloud-visualization
Last synced: 17 days 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 (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-10T19:52:34.000Z (12 months ago)
- Last Synced: 2024-10-09T09:27:51.085Z (28 days ago)
- Topics: d3js, streamlit, wordcloud, wordcloud-visualization
- Language: Python
- Homepage: https://pypi.org/project/st-wordcloud/
- Size: 278 KB
- Stars: 5
- 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).
![](./img/demo.png)
## Install
```shell script
pip install st-wordcloud
```## Usage
```python
from st_wordcloud import st_wordcloudwords = [{"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)