Metadata-Version: 1.0
Name: pycorreios
Version: 0.1
Summary: API for correios in Python
Home-page: https://github.com/avelino/pycorreios/
Author: Thiago Avelino
Author-email: thiagoavelinoster@gmail.com
License: MIT
Description: API Correios
        ============
        Authors:
        --------
        Thiago Avelino (<thiagoavelinoster@gmail.com>)
        Dilan Nery (<dnerylopes@gmail.com>)
        
        Examples
        ========
        Some simple examples of what pyCorreios code looks like:
        # -*- coding: utf-8 -*-
        from pycorreios import Correios
        
        test = Correios().frete(Correios().SEDEX,'44001535','03971010',10,18,8)
        if test['Erro'] != '0':
        print 'Deu erro! :('
        print test['Erro']
        print test['MsgErro']
        else:
        print "Valor: %s\nPrazo de Entrega: %s" % (test['Valor'],test['PrazoEntrega'])
        
        other_test = Correios().cep(44010000)
        print other_test['bairro']
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
