Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brun0xff/4127940be33069bbc2d6c35609add2ff to your computer and use it in GitHub Desktop.
Save brun0xff/4127940be33069bbc2d6c35609add2ff to your computer and use it in GitHub Desktop.
import csv
import urllib2
url = 'http://winterolympicsmedals.com/medals.csv'
response = urllib2.urlopen(url)
cr = csv.reader(response)
for row in cr:
print row
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment