$ docker
This file contains hidden or 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
| # Using Python requests and the Google Maps Geocoding API. | |
| # | |
| # References: | |
| # | |
| # * http://docs.python-requests.org/en/latest/ | |
| # * https://developers.google.com/maps/ | |
| import requests | |
| GOOGLE_MAPS_API_URL = 'http://maps.googleapis.com/maps/api/geocode/json' |