Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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