Awesome-Python-Scripts/Location_Of_Adress/locator.py
2018-10-03 12:42:16 +02:00

6 lines
87 B
Python

import geocoder
t=input("enter the location:")
g = geocoder.arcgis(t)
print(g.latlng)