Created
June 28, 2015 15:57
-
-
Save fmasanori/fc0e98c8c486be80d5a5 to your computer and use it in GitHub Desktop.
QEdu Exemplo de Busca Avançada: escolas, em funcionamento, sem energia, água e esgoto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib.request | |
import json | |
url = 'http://educacao.dadosabertosbr.com/api/escolas/buscaavancada?situacaoFuncionamento=1&energiaInexistente=on&aguaInexistente=on&esgotoInexistente=on' | |
resp = urllib.request.urlopen(url).read() | |
resp = json.loads(resp.decode('utf-8')) | |
print ('Número de Escolas em funcionamento sem energia, água e esgoto:', resp[0]) | |
for x in resp[1]: | |
print (x['nome'], x['cod']) | |
print (x['cidade'], x['estado'], x['regiao']) | |
print () | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment