diff --git a/Python/geolocator_ip.py b/Python/geolocator_ip.py new file mode 100644 index 0000000..1bfe8a2 --- /dev/null +++ b/Python/geolocator_ip.py @@ -0,0 +1,7 @@ +import geocoder + +g=geocoder.ip('120.89.104.47') # you might also try - 147.229.2.90 - this ip address + +addr=g.latlng #this gives latitude and longitude which you can copy and paste on google earth + +print(addr)