Geo Location by Geocoder

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]