Metadata-Version: 1.1
Name: wordcounter
Version: 0.0.2
Summary: A simple Python module to count words in your given text and many more
Home-page: https://github.com/OmkarPathak/Word-Counter
Author: Omkar Pathak
Author-email: omkarpathak27@gmail.com
License: GPL-2.0
Description: ============
        Word-Counter
        ============
        
        A Python Word Counter module
        
        Installation
        ============
        
        ```bash
        pip install wordcounter
        ```
        
        Usage
        =====
        
        - Import the module after installation
        
        ```python
        import wordcounter
        ```
        
        - Create a object with sentence and delimiter as arguments to WordCounter class. Default value for delimiter is ' ' (a single space) 
        
        ```python
        word_counter = WordCounter('The, quick, brown, fox, jumps, over, the, lazy, dog', delimiter=', ')
        ```
        
        - Get word count
        
        ```python
        word_counter.get_word_count()
        ```
        
        - Get count of specific words
        
        ```python
        word_counter.count('the')       # a case insensitive count
        
        # if you want to have a case sensitive search just set ignore_case=False
        word_counter.count('the', ignore_case=False)       # a case sensitive count
        ```
        
        - Get word frequencies
        
        ```python
        word_counter.get_word_frequencies()
        ```
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
