Created
July 21, 2023 05:14
-
-
Save rajrao/b5e7ee2447deeb78d09a94614d1c8ac9 to your computer and use it in GitHub Desktop.
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
# https://geopy.readthedocs.io/en/stable/#nominatim | |
# https://nominatim.org/release-docs/develop/api/Overview/ | |
from geopy.geocoders import Nominatim | |
geolocator = Nominatim(user_agent="test") | |
place = "New York" | |
location = geolocator.geocode(place) | |
print(location) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment