Как получить местоположение пользователя в Python

import geocoder		# pip install geocoder
g = geocoder.ip('me')
print(g.latlng)
Tejas Naik