Metadata-Version: 1.1
Name: stargaze
Version: 0.0.1
Summary: Parse and query stargaze dictionary files.
Home-page: https://github.com/codito/stargaze
Author: Arun Mahapatra
Author-email: arun@codito.in
License: MIT
Description: 
        stargaze
        ===========
        
        version number: 0.0.1
        
        |Build|
        |Say thanks!|
        
        Overview
        --------
        
        Looks up for words in a stardict dictionary.
        
        Installation / Usage
        --------------------
        
        To install use pip:
        
        ::
        
            $ pip install stargaze
        
        Or clone the repo:
        
        ::
        
            $ git clone https://github.com/codito/stargaze.git
            $ python setup.py install
        
        Example
        -------
        .. code-block:: python
        
            >>> import stargaze                               
            >>> d = stargaze.Dictionary("./docs/words")            
            >>> d.lookup("word1")
            'word1_defn'
            >>> # let's lookup for a synonym
            ... d.lookup("word1_syn1")    
            'word1_defn'
        
        License
        -------
        MIT
        
        Contributing
        ------------
        
        Pull requests are most welcome.
        
        .. |Say thanks!| image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg
           :target: https://saythanks.io/to/codito
        
        .. |Build| image:: https://img.shields.io/travis/codito/stargaze.svg
            :target: https://travis-ci.org/codito/stargaze
        
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
