Geo Location 2

Sat 17 May 2025

title: "Geo Location by Geocoder" author: "Rj" date: 2019-04-20 description: "-" type: technical_note draft: false


import geocoder
g = geocoder.ip('me')
print(g.latlng)
[43.6909, -79.3098]
test_location = geocoder.ip('151.101.1.69')
print(test_location.latlng)
[37.751, -97.822]


Score: 5

Category: basics