34

我有一个日期:

from datetime import datetime
from datetime import tzinfo
test = '2013-03-27 23:05'
test2 = datetime.strptime(test,'%Y-%m-%d %H:%M')
>>> test2
datetime.datetime(2013, 3, 27, 23, 5)

>>> test2.replace(tzinfo=EST)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'EST' is not defined

>> test2.replace(tzinfo=UTC)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'UTC' is not defined

我在通话names中可以分配给 tzinfo的时区列表中找不到文档。replace.tzinfo=

我已阅读以下内容,但没有任何内容:

http://docs.python.org/2/library/datetime.html#tzinfo-objects

我也在谷歌搜索过。

编辑:我遵循了 unutbu 提供的解决方案,但得到以下信息:

>>> test = '2013-03-27 00:05'
>>> test
'2013-03-27 00:05'

>>> test2 = dt.datetime.strp(test, '%Y-%m-%d %H:%M')
>>> test2
datetime.datetime(2013, 3, 27, 0, 5)

>>> est = pytz.timezone('US/Eastern')
>>> utc = pytz.utc
>>> print(est.localize(test2))
2013-03-27 00:05:00-04:00
>>> print(utc.localize(test2))
2013-03-27 00:05:00+00:00

>>> print(est.localize(test2,is_dst=False))
2013-03-27 00:05:00-04:00
>>> print(est.localize(test2,is_dst=True))
2013-03-27 00:05:00-04:00
>>>

正如您所看到的,即使我提供了is_dst=标志,偏移量仍然是“-04:00”,这是 EDT 而不是 EST。我很感激帮助。谢谢你。

该文档显示以下内容:

如果你坚持使用当地时间,这个库提供了一种明确构建它们的工具:http: //pytz.sourceforge.net/#problems-with-localtime

>>> loc_dt = datetime(2002, 10, 27, 1, 30, 00)
>>> est_dt = eastern.localize(loc_dt, is_dst=True)
>>> edt_dt = eastern.localize(loc_dt, is_dst=False)
>>> print(est_dt.strftime(fmt) + ' / ' + edt_dt.strftime(fmt))
2002-10-27 01:30:00 EDT-0400 / 2002-10-27 01:30:00 EST-0500

东部在文档的前面被定义为eastern = timezone('US/Eastern')

这似乎表明该is_dst=标志应进一步指定是否指定了夏令时。我将不胜感激为什么这对我的情况不起作用。

4

4 回答 4

56

标准库没有定义任何时区——至少不是很好(文档中给出的玩具示例没有处理像这里提到的那些微妙的问题)。对于预定义的时区,请使用第三方pytz 模块

import pytz
import datetime as DT

eastern = pytz.timezone('US/Eastern')
utc = pytz.utc
test = '2013-03-27 23:05'

这是一个“天真的”日期时间:

test2 = DT.datetime.strptime(test, '%Y-%m-%d %H:%M')   
print(test2)
# 2013-03-27 23:05:00

这通过解释test2为好像它在 EST 时区中来生成一个时区感知的日期时间:

print(eastern.localize(test2))
# 2013-03-27 23:05:00-04:00

这通过解释test2为好像它在 UTC 时区中来生成一个时区感知的日期时间:

print(utc.localize(test2))
# 2013-03-27 23:05:00+00:00

或者,您可以使用以下方法将一个时区感知日期时间转换为另一个时区astimezone

test2_eastern = eastern.localize(test2)
print(test2_eastern.astimezone(utc))
# 2013-03-28 03:05:00+00:00
于 2013-03-28T22:02:24.147 回答
14

Python 3.9发布以来,标准库确实定义了时区,您可以通过

import zoneinfo
print(zoneinfo.available_timezones())

# {'America/Belem', 'Asia/Tel_Aviv', 'Australia/North', 'Asia/Omsk', 
#  'Europe/Isle_of_Man', 'America/New_York', 'Europe/Nicosia', 
#  'Pacific/Funafuti', 'America/Ensenada', 'Europe/Mariehamn', 
#  'America/Maceio', 'America/Guatemala', 'America/Guadeloupe', ...
于 2020-11-16T15:49:20.390 回答
4

正如@MrFuppes 所提到的,从 python 3.9开始,您不需要安装 3rd 方pytz,而是使用 native zoneinfo

from datetime import datetime
from zoneinfo import ZoneInfo

test = '2013-03-27 23:05'
test2 = datetime.strptime(test,'%Y-%m-%d %H:%M')
date_string = test2.replace(tzinfo=ZoneInfo('US/Eastern'))
print(datestring)
2013-03-27 23:05:00-04:00
于 2021-07-14T10:41:48.150 回答
1
 import pytz
 timezones=pytz.all_timezones

这给出了所有时区

于 2020-04-04T06:16:44.160 回答