region_name not available
lithammer opened this issue · 1 comments
lithammer commented
The official Python driver offers region_name
which is the full name for what you call region_code
, i.e. "Californa" instead of "CA".
>>> city.record_by_addr('64.233.161.99')
>>> {'area_code': 650,
'city': 'Mountain View',
'country_code': 'US',
'country_code3': 'USA',
'country_name': 'United States',
'dma_code': 807,
'latitude': 37.419200897216797,
'longitude': -122.05740356445312,
'metro_code': 807,
'postal_code': '94043',
'region': 'CA',
'region_name': 'California',
'time_zone': 'America/Los_Angeles'}
Is there any way to get this with pygeoip
as well? Couldn't find anything except from the 0.3.0 changelog which hinted that you renamed region_name
to region_code
. But that's not the same.
lithammer commented
Currently our workaround is to look it up ourselves in a local copy of http://www.maxmind.com/download/geoip/misc/region_codes.csv