Skip to content

Instantly share code, notes, and snippets.

@syshen
Created October 31, 2011 03:59
Show Gist options
  • Save syshen/1326882 to your computer and use it in GitHub Desktop.
Save syshen/1326882 to your computer and use it in GitHub Desktop.
import sys
import os
import urllib
base_url = "https://maps.googleapis.com/maps/api/place/search/json?location=25.042582,121.513936&radius=500&types=sublocality&sensor=false&key=AIzaSyBhIVUcucpsBPyHvJYu-e29Pewpj953dWM"
resp = urllib.urlopen(base_url)
print resp.read()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment