Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Created September 13, 2015 19:09
Show Gist options
  • Save AndyNovo/575655d4e6c57c995092 to your computer and use it in GitHub Desktop.
Save AndyNovo/575655d4e6c57c995092 to your computer and use it in GitHub Desktop.
import urllib.request
filename, headers = urllib.request.urlretrieve('http://api.icndb.com/jokes/random')
response = open(filename)
json = eval(response.read())
print(json['value']['joke'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment