Skip to content

Instantly share code, notes, and snippets.

@tkaemming
Created June 17, 2010 21:34
Show Gist options
  • Save tkaemming/442816 to your computer and use it in GitHub Desktop.
Save tkaemming/442816 to your computer and use it in GitHub Desktop.
import csv, urllib2
url = 'http://geocoder.us/service/csv/geocode?zip=65807'
response = urllib2.urlopen(url)
reader = csv.reader(response)
for line in reader:
print line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment