Metadata-Version: 2.1
Name: Py-Cep
Version: 1.0.3
Summary: Um simples modulo para obter informacoes de um CEP
Home-page: https://github.com/thomaznathanael/Py-Cep
Author: Thomaz Nathanael
Author-email: thomaznathanael@gmail.com
License: LICENSE
Description: # Py-Cep
        
        [![PyPI version](https://img.shields.io/pypi/v/Py-Cep?style=for-the-badge)](https://pypi.org/project/Py-Cep/)
        [![PyPi Downloads](https://img.shields.io/pypi/dm/Py-Cep?style=for-the-badge)](https://pypistats.org/packages/Py-Cep)
        [![Python](https://img.shields.io/pypi/pyversions/Py-Cep?style=for-the-badge&logo=python)](https://www.python.org/)
        [![License](https://img.shields.io/github/license/thomaznathanael/Py-Cep?style=for-the-badge)](https://github.com/thomaznathanael/Py-Cep/blob/main/LICENSE)
        
        [![Alerts](https://img.shields.io/lgtm/alerts/github/thomaznathanael/Py-Cep?style=for-the-badge&logo=lgtm)](https://lgtm.com/projects/g/thomaznathanael/Py-Cep/alerts/)
        [![Quality](https://img.shields.io/lgtm/grade/python/github/thomaznathanael/Py-Cep?style=for-the-badge&logo=lgtm)](https://lgtm.com/projects/g/thomaznathanael/Py-Cep/context:python)
        
        Obtem informaÃ§Ãµes de CEPs do Brasil
        
        ## PrÃ© requisitos
        
          * InstalaÃ§Ã£o de qualquer versÃ£o do Python (http://www.python.org/download)
          
        ## InstalaÃ§Ã£o das dependÃªncias
        
        ```bash
        $ pip install -r requirements.txt
        ```
        
        ## UtilizaÃ§Ã£o
        
        ```bash
        >>> from pycep import PyCep
        >>> cep1 = PyCep('59104210')
        >>> cep1.dadosCep
        {'cep': '59104-210', 'logradouro': 'Rua Alvorada', 'complemento': '', 'bairro': 'IgapÃ³', 'localidade': 'Natal', 'uf': 'RN', 'ibge': '2408102', 'gia': '', 'ddd': '84', 'siafi': '1761'}
        >>> cep1.dadosCep['localidade']
        'Natal'
        >>> cep1.dadosCep['uf']
        'RN'
        >>> cep1.dadosCep.keys()
        dict_keys(['cep', 'logradouro', 'complemento', 'bairro', 'localidade', 'uf', 'ibge', 'gia', 'ddd', 'siafi'])
        >>> cep1.dadosCep.values()
        dict_values(['59104-210', 'Rua Alvorada', '', 'IgapÃ³', 'Natal', 'RN', '2408102', '', '84', '1761'])
        >>>
        ```
        
        ## LicenÃ§a
        -------
        [LicenÃ§a MIT](LICENSE)
        
Keywords: cep,json,api,pycep,py-cep
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
