Metadata-Version: 1.1
Name: wordster
Version: 0.0.2
Summary: A small wrapper around official Merriam Webster dictionary
Home-page: https://github.com/rahulxxarora/wordster
Author: Rahul Arora
Author-email: coderahul94@gmail.com
License: MIT
Description: 
        Wordster
        ====
        
        A simple python wrapper for [Merriam Webster](https://www.merriam-webster.com/) Website. Use it to get meanings of words.
        
        
        Installation
        ============
        
        ```
        pip install wordster
        ```
        
        
        Example
        =======
        
        ### Code
        
        ```python
        
        from wordster import wordster
        
        # get list of different meanings for a given word
        print wordster.find_meaning("jargon")
        ```    
           
        ### Output
        
        ```
        ['confused unintelligible language', 'the technical terminology or characteristic idiom of a special activity or group', 'obscure and often pretentious language marked by circumlocutions and long words']
        ```
        
        
            
Keywords: dictionary merriam webster meaning
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Operating System :: POSIX
