Created
June 16, 2018 13:32
-
-
Save jtemporal/4b8e7d437f423763099c3ddaacd4cb70 to your computer and use it in GitHub Desktop.
pegar os resultados da copa
This file contains hidden or 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
# créditos: https://twitter.com/Denommus/status/1007407580132585472 e @fmasanori | |
import requests | |
jogos = requests.get('http://worldcup.sfg.io/matches').json() | |
[print(j['home_team']['country'], j['home_team']['goals'], 'x', j['away_team']['country'], j['away_team']['goals']) | |
for j in jogos if j['status'] in ('completed', 'in progress')] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment