Socket
Socket
Sign inDemoInstall

wordcloud-lite

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wordcloud-lite

Generate Word Cloud with ease.


Maintainers
1

wordcloud_lite

Lightweight WordCloud Generator

Wordcloud_lite is a Python package to generate Word Cloud from the text data. WordCloud is a visual representation of the most common words within the text data. It is used most often for tags on the websites.

Few points:
  • There should not be any mising value before passing the data to the generate_wordcloud method.
  • It generates a fix size of the image.
  • You can pass additional parameters to customize the wordcloud.

Installation

pip install wordcloud-lite

Dependencies

wordcloud_lite uses a number of open source packages to work properly:

  • NLTK - For text processing
  • wordcloud - To work on wordcloud
  • pillow - To deal with images
  • matplotlib - Data Visualization package

And of course wordcloud_lite itself is open source with a public repository https://github.com/sonucr7/wordcloud_lite on GitHub.

Uses

from wordcloud_lite.wcl import WordCloudLite
import pandas as pd 
import matplotlib.pyplot as plt
%matplotlib inline

data = pd.read_csv("data.csv")

#generate wordcloud
WordCloudLite.generate_wordcloud(data['column_having_text_records'])

License

MIT

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc