Commit a3f03444 by William Tisäter

Revert "Merge branch 'master' of https://github.com/likema/pygeoip"

This reverts commit 6eeb4e8a, reversing
changes made to 14075edc.
parent 6eeb4e8a
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
...@@ -44,7 +44,6 @@ except ImportError: ...@@ -44,7 +44,6 @@ except ImportError:
import pygeoip.const import pygeoip.const
from pygeoip.util import ip2long from pygeoip.util import ip2long
from pygeoip.timezone import time_zone_by_country_and_region from pygeoip.timezone import time_zone_by_country_and_region
from pygeoip.regionname import region_name_by_country_and_region_code
MMAP_CACHE = const.MMAP_CACHE MMAP_CACHE = const.MMAP_CACHE
...@@ -347,8 +346,7 @@ class GeoIP(GeoIPBase): ...@@ -347,8 +346,7 @@ class GeoIP(GeoIPBase):
char = ord(record_buf[record_buf_pos+str_length]) char = ord(record_buf[record_buf_pos+str_length])
if str_length > 0: if str_length > 0:
record['region'] = record_buf[record_buf_pos:record_buf_pos+str_length] record['region_name'] = record_buf[record_buf_pos:record_buf_pos+str_length]
record['region_name'] = region_name_by_country_and_region_code(record['country_code'], record['region']) if 'country_code' in record else ''
record_buf_pos += str_length + 1 record_buf_pos += str_length + 1
str_length = 0 str_length = 0
...@@ -418,7 +416,7 @@ class GeoIP(GeoIPBase): ...@@ -418,7 +416,7 @@ class GeoIP(GeoIPBase):
if 'country_code' in record: if 'country_code' in record:
record['time_zone'] = time_zone_by_country_and_region( record['time_zone'] = time_zone_by_country_and_region(
record['country_code'], record.get('region')) or '' record['country_code'], record.get('region_name')) or ''
else: else:
record['time_zone'] = '' record['time_zone'] = ''
...@@ -544,7 +542,7 @@ class GeoIP(GeoIPBase): ...@@ -544,7 +542,7 @@ class GeoIP(GeoIPBase):
@type addr: str @type addr: str
@return: dict with country_code, country_code3, country_name, @return: dict with country_code, country_code3, country_name,
region, city, postal_code, latitude, longitude, region, city, postal_code, latitude, longitude,
dma_code, metro_code, area_code, region, region_name, time_zone dma_code, metro_code, area_code, region_name, time_zone
@rtype: dict @rtype: dict
""" """
try: try:
...@@ -569,7 +567,7 @@ class GeoIP(GeoIPBase): ...@@ -569,7 +567,7 @@ class GeoIP(GeoIPBase):
@type hostname: str @type hostname: str
@return: dict with country_code, country_code3, country_name, @return: dict with country_code, country_code3, country_name,
region, city, postal_code, latitude, longitude, region, city, postal_code, latitude, longitude,
dma_code, metro_code, area_code, region, region_name, time_zone dma_code, metro_code, area_code, region_name, time_zone
@rtype: dict @rtype: dict
""" """
addr = socket.gethostbyname(hostname) addr = socket.gethostbyname(hostname)
...@@ -584,7 +582,7 @@ class GeoIP(GeoIPBase): ...@@ -584,7 +582,7 @@ class GeoIP(GeoIPBase):
@param addr: IP address @param addr: IP address
@type addr: str @type addr: str
@return: dict containing country_code, region, @return: dict containing country_code, region,
region and region_name and region_name
@rtype: dict @rtype: dict
""" """
try: try:
...@@ -610,7 +608,7 @@ class GeoIP(GeoIPBase): ...@@ -610,7 +608,7 @@ class GeoIP(GeoIPBase):
@param hostname: host name @param hostname: host name
@type hostname: str @type hostname: str
@return: dict containing country_code, region, @return: dict containing country_code, region,
region and region_name and region_name
@rtype: dict @rtype: dict
""" """
addr = socket.gethostbyname(hostname) addr = socket.gethostbyname(hostname)
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment