Skip to content

Instantly share code, notes, and snippets.

@fmasanori
Last active October 30, 2022 00:00
Show Gist options
  • Save fmasanori/1288160dad16cc473a53 to your computer and use it in GitHub Desktop.
Save fmasanori/1288160dad16cc473a53 to your computer and use it in GitHub Desktop.
World Cup in six lines of Python 3. Jogos da Copa do Mundo em cinco linhas de Python 3.
import requests
jogos = requests.get('http://worldcup.sfg.io/matches').json()
for jogo in jogos:
if jogo['status'] in ('completed', 'in progress'):
print (jogo['home_team']['country'], jogo['home_team']['goals'], 'x',
jogo['away_team']['country'], jogo['away_team']['goals'])
@natorsc
Copy link

natorsc commented Jun 21, 2014

alunos do Python para zumbis na área akkakakaka.


from urllib import request
import json

resp = request.urlopen('http://worldcup.sfg.io/matches').read()
for jogo in json.loads(resp.decode('utf-8')):
if jogo['status'] == 'completed':
hora = jogo['datetime']
print (jogo['location'],(hora[0:10], hora[11:16]))
print ("Vencedor:", jogo['winner'])
print (jogo['home_team']['country'], jogo['home_team']['goals'], 'x', jogo['away_team']['country'], jogo['away_team']['goals'],"\n")

sair = str(input("Precione ENTER para sair"))

@willmendesneto
Copy link

Awesome!

@GuilhermePython
Copy link

No meu Python so rodou assim (dei um espaço na terceira linha):

import urllib.request
import json
resp = urllib.request.urlopen ('http://worldcup.sfg.io/matches').read()
for jogo in json.loads(resp.decode('utf-8')):
if jogo['status'] == 'completed':
print (jogo['home_team']['country'], jogo['home_team']['goals'], 'x', jogo['away_team']['country'], jogo['away_team']['goals'])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment