python import geolite2 gi = geolite2.reader() ip_address = "123.45.67.89" location = gi.record_by_addr(ip_address) print(location) geolite2.close()