Skip to content

Instantly share code, notes, and snippets.

@fk-pixel
Created August 17, 2020 12:50
Show Gist options
  • Save fk-pixel/1bbec90318d1f8f5dc9873366b6fb917 to your computer and use it in GitHub Desktop.
Save fk-pixel/1bbec90318d1f8f5dc9873366b6fb917 to your computer and use it in GitHub Desktop.
Manchester, Greater Manchester, North West England, England, United Kingdom
from functools import partial
from geopy.geocoders import Nominatim
geolocator = Nominatim(user_agent="manchester_value")
geocode = partial(geolocator.geocode, language="en")
from geopy.geocoders import Nominatim
print(geocode("manchester"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment