Skip to content

Instantly share code, notes, and snippets.

View mccbala's full-sized avatar

Bala Subramanian mccbala

View GitHub Profile
@mccbala
mccbala / geo.py
Created July 19, 2017 11:11 — forked from bradmontgomery/geo.py
Example of Reverse Geocoding in python with Google Maps api
import requests
def example():
# grab some lat/long coords from wherever. For this example,
# I just opened a javascript console in the browser and ran:
#
# navigator.geolocation.getCurrentPosition(function(p) {
# console.log(p);
# })