Skip to content

Instantly share code, notes, and snippets.

@pvleite
Forked from fmasanori/ChuckJokesPython3.py
Last active August 29, 2015 13:55
Show Gist options
  • Save pvleite/8715234 to your computer and use it in GitHub Desktop.
Save pvleite/8715234 to your computer and use it in GitHub Desktop.
Mostra um fact do Chuck Norris a cada 5 segundos
import urllib.request
import json
import time
url = 'http://api.icndb.com/jokes?limitTo=[nerdy]'
resp = urllib.request.urlopen(url).read()
data = json.loads(resp.decode('utf-8'))
for d in data['value']:
print (d['joke'])
time.sleep(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment