Skip to content

drogbadvc/st-wordcloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Streamlit - WordCloud React

A Streamlit simple component to display WordCloud.

Install

pip install st-wordcloud

Usage

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)