sfbrigade / datasci-sba

Solving problems with the Small Business Administration
10 stars 18 forks source link

Geocoding #7

Open VincentLa opened 7 years ago

VincentLa commented 7 years ago

We'll be using this: https://github.com/slimkrazy/python-google-places#python-google-places to geocode addresses. Examples:

Examples of search:
query_result = google_places.nearby_search(
         location='San Francisco, California', keyword='Starbucks',
         radius=20000, types=[types.TYPE_FOOD])

query_result = google_places.nearby_search(
         location='6476 WASHINGTON STREET, Yountville, CA, 94599',
         radius=100)