Metadata-Version: 1.2
Name: hub_cep
Version: 0.0.15
Summary: Hub to connect multiple cep providers and setup a lambda func
Home-page: https://github.com/lucassimon/hub-cep
Author: Lucas Simon
Author-email: lucassrod@gmail.com
License: MIT
Description: hub-cep
        =======
        
        Busca CEP utilizando diferentes provedores de consulta
        
        .. image:: https://badge.fury.io/py/hub-cep.svg
            :target: https://badge.fury.io/py/hub-cep
            :alt: PyPI version
        
        .. image:: https://circleci.com/gh/lucassimon/hub-cep.svg?style=svg
            :target: https://circleci.com/gh/lucassimon/hub-cep
            :alt: Build Status
        
        .. image:: https://codecov.io/gh/lucassimon/hub-cep/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/lucassimon/hub-cep
        
        .. code-block:: python
        
            import json
        	from hub_cep.zipcodes import ZipCode
        
            client = ZipCode(ZIPCODE)
            status_code, body = client.search()
        
            response = {
                "statusCode": status_code,
                "body": json.dumps(body)
            }
        
            return response
        
        
        Installing hub-cep
        ------------------
        
        .. code-block:: bash
        
            pip install hub-cep
        
Keywords: correios busca endereco cep
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Natural Language :: Portuguese
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.4
