Metadata-Version: 1.0
Name: cep
Version: 0.1.1
Summary: Pesquisa de CEPs via site dos Correios
Home-page: https://github.com/jbochi/cep
Author: Juarez Bochi
Author-email: jbochi@gmail.com
License: MIT
Description: =================================
         CEP
        =================================
        
        Esta biblioteca acessa o site dos Correios para fazer pesquisa por CEP.
        
        USO
        ===
        
        ::
        
            >>> from cep import Correios
            >>> c = Correios()
            >>> resultados = c.consulta('Juarez')
            >>> len(resultados)
            100
            >>> resultados[64]
            {'Localidade': u'Jo\xe3o Pessoa', 'Bairro': u'Torre', 'UF': u'PB', 'Logradouro': u'Avenida Juarez T\xe1vora - de 1147/1148 a 1911/', 'CEP': u'58040-021'}
            >>> c.detalhe(64)
            {'Localidade': u'Jo\xe3o Pessoa', 'Bairro': u'Torre', 'UF': u'PB', 'Logradouro': u'Avenida Juarez T\xe1vora - de 1147/1148 a 1911/1912', 'CEP': u'58040-021'}
            >>> c.consulta('91370000', primeiro=True)
            {'Localidade': u'Porto Alegre', 'Bairro': u'Vila Ipiranga', 'UF': u'RS', 'Logradouro': u'Rua Alberto Silva - at\xe9 965/966', 'CEP': u'91370-000'}
        
        
        REQUIREMENTS
        ============
        
        * BeautifulSoup
        
        LICENSE
        =======
        
        * MIT License
        
        TODO
        ====
        
        * Documentação
        * Criar setup.py e registrar no PyPi
        * Hospedar API pública (json/xml)
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet
