Metadata-Version: 2.1
Name: python-sonic-client
Version: 0.0.3
Summary: Python client for Sonic Search DB
Home-page: https://github.com/cyprx/pysonic
Author: cyprx
Author-email: cyprx@outlook.com
License: MIT
Description: # pysonic
        
        pysonic is a Python client for lightweight and fast search engine - [Sonic](https://github.com/valeriansaliou/sonic)
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.
        
        ```bash
        pip install python-sonic-client --upgrade
        ```
        
        ## Usage
        
        ```python
        import pysonic
        
        c = pysonic.Client()
        with c.mode(pysonic.Mode.INGEST) as ingestor:
            resp = ingestor.ping()
        
        with c.mode(pysonic.Mode.SEARCH) as searcher:
            resp = searcher.ping()
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
