本文整理汇总了Python中pygeoip.GeoIP.time_zone_by_addr方法的典型用法代码示例。如果您正苦于以下问题:Python GeoIP.time_zone_by_addr方法的具体用法?Python GeoIP.time_zone_by_addr怎么用?Python GeoIP.time_zone_by_addr使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pygeoip.GeoIP
的用法示例。
在下文中一共展示了GeoIP.time_zone_by_addr方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_time_zone_by_ip
# 需要导入模块: from pygeoip import GeoIP [as 别名]
# 或者: from pygeoip.GeoIP import time_zone_by_addr [as 别名]
def get_time_zone_by_ip(self, request):
'''
http://packages.python.org/pygeoip/
'''
gi = GeoIP(settings.GEOIP_PATH + settings.GEOIP_CITY, pygeoip.STANDARD)
client_ip = request.get_host().split(':')[0]
try:
time_zone = gi.time_zone_by_addr(client_ip)
except:
return None
else:
if not time_zone:
client_ip = request.META.get('REMOTE_ADDR')
time_zone = gi.time_zone_by_addr(client_ip)
return time_zone
示例2: process_request
# 需要导入模块: from pygeoip import GeoIP [as 别名]
# 或者: from pygeoip.GeoIP import time_zone_by_addr [as 别名]
def process_request(self, request):
if 'django_timezone' in request.session:
tzname = request.session['django_timezone']
timezone.activate(pytz.timezone(tzname))
else:
ip = get_real_ip(request)
if ip is not None:
gi = GeoIP(settings.GEOIP_DATABASE, MEMORY_CACHE)
tzname = gi.time_zone_by_addr(ip)
if tzname is not None:
request.session['django_timezone'] = tzname
timezone.activate(pytz.timezone(tzname))
else:
timezone.deactivate()