We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4374fbd + a5820aa commit 49fa6d3Copy full SHA for 49fa6d3
.gitignore
@@ -2,6 +2,9 @@
2
__pycache__/
3
*.py[cod]
4
5
+#virtualenv
6
+dev_env/
7
+
8
# C extensions
9
*.so
10
README.md
@@ -1,4 +1,24 @@
1
-postmon-python
+Postmon-python
==============
Python wrapper to Postmon API
+Utilização
+-----------
+* Instalação:
11
+ pip install postmon
12
13
+* Uso:
14
15
+ from postmon import buscar_cep
16
17
+ cep = buscar_cep('01419101')
18
19
+ cidade = cep.cidade
20
+ estado = cep.estado
21
+ logradouro = cep.logradouro
22
+ bairro = cep.bairro
23
24
+ print logradouro + ', ' + bairro + ' - ' + cidade + '/' + estado
requirements.txt
@@ -0,0 +1,3 @@
+httpretty==0.8.0
+nose==1.3.1
+requests==2.2.1
0 commit comments