-
-
Save pvleite/8715234 to your computer and use it in GitHub Desktop.
Mostra um fact do Chuck Norris a cada 5 segundos
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 | |
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