Generate Word Cloud with ease.
Project description
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
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wordcloud_lite-1.2.tar.gz
(2.6 kB
view details)
File details
Details for the file wordcloud_lite-1.2.tar.gz.
File metadata
- Download URL: wordcloud_lite-1.2.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.4.2 requests/2.21.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02edfa26de4110c3f44e5db809668468cdd0ecaecb41c63a882f3655f070b574
|
|
| MD5 |
1cc3064550320e1e6eb57a6a777370c9
|
|
| BLAKE2b-256 |
43ec20435e650c1dc4948d118cfefcb8702ddc81346e62957362085aa0695eec
|