Metadata-Version: 2.1
Name: cambridict
Version: 0.1.6
Summary: Search the meaning of the word from Cambridge Dictionary online, and get the result in JSON format
Home-page: https://github.com/tegieng7/cambridict
Author: Duy Nguyen
Author-email: tegieng7@gmail.com
License: MIT
Description: # Cambridge Dictionary
        Search the meaning of the word from Cambridge Dictionary online, and get the result in JSON format
        
        ## Installation
        
        You can install the `cambridict` from PyPI:
        
        ```
        pip install cambridict
        ```
        
        ## How to use
        
        ```python
        import json
        
        from cambridict import Cambridge
        
        d = Cambridge('EV')
        
        word = 'take'
        data = d.search(word)
        
        result = '{0}.json'.format(word)
        with open(result, 'w') as fp:
            json.dump(data, fp, indent=4)
        
        ```
        
        Sample output [take.json](https://github.com/tegieng7/cambridict/blob/master/tests/take.json)
        
        ## Supported dictionaries
        
        | Name | Dictionary                                                                            |
        |------|---------------------------------------------------------------------------------------|
        | `EE` | [English](https://dictionary.cambridge.org/dictionary/english/)                       |
        | `EV` | [English-Vietnamese](https://dictionary.cambridge.org/dictionary/english-vietnamese/) |
        
        
Keywords: cambridge,dictionary
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
