Metadata-Version: 2.1
Name: wordcloud_lite
Version: 1.2
Summary: Generate Word Cloud with ease.
Home-page: https://github.com/sonucr7/wordcloud_lite
Author: Sonu Kumar
Author-email: sonu1000raw@gmail.com
License: MIT
Download-URL: https://github.com/sonucr7/wordcloud_lite/archive/v_01.tar.gz
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
        ```sh
        pip install wordcloud-lite
        ```
        
        
        
        
        ## Dependencies
        
        wordcloud_lite uses a number of open source packages to work properly:
        
        - [NLTK](https://www.nltk.org/) - For text processing
        - [wordcloud](https://pypi.org/project/wordcloud/) - To work on wordcloud
        - [pillow](https://pypi.org/project/Pillow/) - To deal with images
        - [matplotlib](https://pypi.org/project/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
        
        
        ```python
        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: WordCloud,NLP,nltk
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
