我有那个国家的国家名称和UTC偏移量如何使用 utcoffset 找出该国家/地区的当地时间?
查看 pytz 以按位置查找时区。也许是这样的:
>>> import pytz, datetime
>>> pytz.country_timezones['de']
['Europe/Berlin']
>>> matching_tzs = [t for t in pytz.country_timezones['de'] if pytz.timezone(t)._utcoffset.total_seconds() == 3600]
>>> datetime.datetime.now(tz=pytz.timezone(matching_tzs[0]))
datetime.datetime(2011, 5, 6, 17, 5, 26, 174828, tzinfo=<DstTzInfo 'Europe/Berlin' CEST+2:00:00 DST>)
以时区(作为tzinfo
对象)作为参数调用datetime.now()
。
一个国家可能跨越多个时区。地点的 UTC 偏移量可能会随时间而变化。
给定国家/地区代码和 UTC 偏移量,您可以尝试从 Olson tz 数据库中查找当前时间的匹配时区。以下是@Mu Mind的答案的变体,它考虑了当前时间(否则某些时区的结果可能会出乎意料):
from datetime import datetime, timedelta
import pytz
country_code, utc_offset = 'de', timedelta(hours=1)
# find matching timezones and print corresponding local time
now_in_utc = datetime.now(pytz.utc)
for zonename in pytz.country_timezones[country_code]:
tz = pytz.timezone(zonename)
local_time = now_in_utc.astimezone(tz)
if tz.utcoffset(local_time) == utc_offset: #NOTE: utc offset depends on time
print("%st%s" % (tz.zone, local_time.strftime("%Y-%m-%d %H:%M:%S %Z%z")))
输出
Europe/Berlin 2013-12-02 20:42:49 CET+0100
保存当前TZ
环境变量值,然后执行
>>> os.environ['TZ'] = 'US/Eastern'
>>> time.tzset()
对于库,无论您使用什么时间函数都将用于美国/东部时区,您可以稍后将其重置为原始时区。
用法示例:
>>> time.strftime('%X %x %Z')
'22:54:11 05/06/11 SGT'
>>> os.environ['TZ'] = 'US/Eastern'
>>> time.strftime('%X %x %Z')
'10:54:30 05/06/11 EDT'
有关示例,请参阅时间模块文档。
工作代码
utcoffset='+5:30'
utctime=datetime.datetime.utcnow()
hr=utcoffset[0:utcoffset.find(':')]
min=utcoffset[utcoffset.find(':')+1:]
datetimeofclient=datetime.timedelta(hours=int(hr),minutes=int(min))