如何在Python中将本地时间转换为UTC?
如何将本地时间的日期时间字符串转换为UTC时间的字符串 ?
我确信我以前做过这个,但是找不到它,所以希望将来能够帮助我(和其他人)做到这一点。
澄清 :例如,如果我有我的本地时区( +10
) 2008-09-17 14:02:00
,我想生成等效的UTC
时间的字符串: 2008-09-17 04:02:00
。
此外,从http://lucumr.pocoo.org/2011/7/15/eppur-si-muove/ ,请注意,通常这是不可能的,因为与DST和其他问题,没有从本地时间独特的转换UTC时间。
首先,将字符串解析为一个天真的日期时间对象。 这是datetime.datetime
一个实例,没有附加的时区信息。 有关解析日期字符串的信息,请参阅datetime.strptime
文档。
使用带有时区+ UTC全部列表的pytz
模块。 找出本地时区是什么,从中构建一个时区对象,并操作并附加到天真的日期时间。
最后,使用datetime.astimezone()
方法将日期时间转换为UTC。
源代码使用本地时区“America / Los_Angeles”作为字符串“2001-2-3 10:11:12”:
import pytz, datetime local = pytz.timezone ("America/Los_Angeles") naive = datetime.datetime.strptime ("2001-2-3 10:11:12", "%Y-%m-%d %H:%M:%S") local_dt = local.localize(naive, is_dst=None) utc_dt = local_dt.astimezone (pytz.utc)
从那里,你可以使用strftime()
方法根据需要格式化UTC日期时间:
utc_dt.strftime ("%Y-%m-%d %H:%M:%S")
日期时间模块的utcnow()函数可用于获取当前的UTC时间。
>>> import datetime >>> utc_datetime = datetime.datetime.utcnow() >>> utc_datetime.strftime("%Y-%m-%d %H:%M:%S") '2010-02-01 06:59:19'
正如Tom上面提到的链接: http : //lucumr.pocoo.org/2011/7/15/eppur-si-muove/说:
UTC是一个没有夏令时的时区,并且仍然是一个没有配置更改的时区。
始终以UTC测量和存储时间 。
如果您需要记录时间,请分开存储。 不要存储本地时间+时区信息!
注意 – 如果您的任何数据位于使用DST的地区,请使用pytz
并查看John Millikin的答案。
如果你想从一个给定的字符串获得UTC时间,并且足够幸运的话可以在世界上不使用DST的地区,或者你的数据只有在没有应用DST的情况下从UTC时间偏移:
– >使用本地时间作为偏移值的基础:
>>> # Obtain the UTC Offset for the current system: >>> UTC_OFFSET_TIMEDELTA = datetime.datetime.utcnow() - datetime.datetime.now() >>> local_datetime = datetime.datetime.strptime("2008-09-17 14:04:00", "%Y-%m-%d %H:%M:%S") >>> result_utc_datetime = local_datetime + UTC_OFFSET_TIMEDELTA >>> result_utc_datetime.strftime("%Y-%m-%d %H:%M:%S") '2008-09-17 04:04:00'
– >或者,从一个已知的偏移量,使用datetime.timedelta():
>>> UTC_OFFSET = 10 >>> result_utc_datetime = local_datetime - datetime.timedelta(hours=UTC_OFFSET) >>> result_utc_datetime.strftime("%Y-%m-%d %H:%M:%S") '2008-09-17 04:04:00'
感谢@rofly,从字符串到字符串的完整转换如下:
time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime(time.mktime(time.strptime("2008-09-17 14:04:00", "%Y-%m-%d %H:%M:%S"))))
我的time
/ calendar
功能摘要:
time.strptime
字符串 – >元组(没有应用时区,所以匹配字符串)
time.mktime
本地时间元组 – >秒以来的时间(总是本地时间)
time.gmtime
自纪元以来的秒数 – > UTC中的元组
和
calendar.timegm
UTC的元组 – >自纪元以来的秒数
time.localtime
秒以来的时间 – >本地时区的元组
def local_to_utc(t): secs = time.mktime(t) return time.gmtime(secs) def utc_to_local(t): secs = calendar.timegm(t) return time.localtime(secs)
资料来源: http : //feihonghsu.blogspot.com/2008/02/converting-from-local-time-to-utc.html
来自bd808的示例用法:如果您的源是一个datetime.datetime
对象t
,请调用:
local_to_utc(t.timetuple())
以下是常见Python时间转换的摘要
- struct_time(UTC)→POSIX:
calendar.timegm(struct_time)
- 幼稚的日期时间(本地)→POSIX:
calendar.timegm(stz.localize(dt, is_dst=None).utctimetuple())
- Naïve日期时间(UTC)→POSIX:
calendar.timegm(dt.utctimetuple())
- 意识日期时间→POSIX:
calendar.timegm(dt.utctimetuple())
- POSIX→struct_time(UTC):
time.gmtime(t)
- 简单的日期时间(本地)→struct_time(UTC):
stz.localize(dt, is_dst=None).utctimetuple()
- Naïve日期时间(UTC)→struct_time(UTC):
dt.utctimetuple()
- Aware datetime→struct_time(UTC):
dt.utctimetuple()
- POSIX→Naïvedatetime(local):
datetime.fromtimestamp(t, None)
- struct_time(UTC)→Naïvedatetime(local):
datetime.datetime(struct_time[:6], tzinfo=UTC).astimezone(tz).replace(tzinfo=None)
- Naïve日期时间(UTC)→Naïve日期时间(本地):
dt.replace(tzinfo=UTC).astimezone(tz).replace(tzinfo=None)
- Aware datetime→Naïvedatetime(local):
dt.astimezone(tz).replace(tzinfo=None)
- POSIX→Naïve日期时间(UTC):
datetime.utcfromtimestamp(t)
- struct_time(UTC)→Naïvedatetime(UTC):
datetime.datetime(struct_time[:6])
- 幼稚的日期时间(本地)→天真的日期时间(UTC):
stz.localize(dt, is_dst=None).astimezone(UTC).replace(tzinfo=None)
- Aware datetime→Naïvedatetime(UTC):
dt.astimezone(UTC).replace(tzinfo=None)
- POSIX→认识日期时间:
datetime.fromtimestamp(t, tz)
- struct_time(UTC)→感知日期时间:
datetime.datetime(struct_time[:6], tzinfo=UTC).astimezone(tz)
- 幼稚的日期时间(本地)→意识到的日期时间:
stz.localize(dt, is_dst=None)
- 天真的日期时间(UTC)→意识到的日期时间:
dt.replace(tzinfo=UTC)
资料来源: taaviburns.ca
pytz还有一个例子,但是包含localize(),它保存了我的一天。
import pytz, datetime utc = pytz.utc fmt = '%Y-%m-%d %H:%M:%S' amsterdam = pytz.timezone('Europe/Amsterdam') dt = datetime.datetime.strptime("2012-04-06 10:00:00", fmt) am_dt = amsterdam.localize(dt) print am_dt.astimezone(utc).strftime(fmt) '2012-04-06 08:00:00'
我用dateutil (这是在其他相关问题上广泛推荐的SO)祝你好运:
from datetime import * from dateutil import * from dateutil.tz import * # METHOD 1: Hardcode zones: utc_zone = tz.gettz('UTC') local_zone = tz.gettz('America/Chicago') # METHOD 2: Auto-detect zones: utc_zone = tz.tzutc() local_zone = tz.tzlocal() # Convert time string to datetime local_time = datetime.strptime("2008-09-17 14:02:00", '%Y-%m-%d %H:%M:%S') # Tell the datetime object that it's in local time zone since # datetime objects are 'naive' by default local_time = local_time.replace(tzinfo=local_zone) # Convert time to UTC utc_time = local_time.astimezone(utc_zone) # Generate UTC time string utc_string = utc_time.strftime('%Y-%m-%d %H:%M:%S')
(代码是从这个答案派生的, 将UTC的datetime字符串转换成本地的日期时间 )
我用python-dateutil获得了最大的成功:
from dateutil import tz def datetime_to_utc(date): """Returns date in UTC w/o tzinfo""" return date.astimezone(tz.gettz('UTC')).replace(tzinfo=None) if date.tzinfo else date
import time import datetime def Local2UTC(LocalTime): EpochSecond = time.mktime(LocalTime.timetuple()) utcTime = datetime.datetime.utcfromtimestamp(EpochSecond) return utcTime >>> LocalTime = datetime.datetime.now() >>> UTCTime = Local2UTC(LocalTime) >>> LocalTime.ctime() 'Thu Feb 3 22:33:46 2011' >>> UTCTime.ctime() 'Fri Feb 4 05:33:46 2011'
如果你喜欢datetime.datetime:
dt = datetime.strptime("2008-09-17 14:04:00","%Y-%m-%d %H:%M:%S") utc_struct_time = time.gmtime(time.mktime(dt.timetuple())) utc_dt = datetime.fromtimestamp(time.mktime(utc_struct_time)) print dt.strftime("%Y-%m-%d %H:%M:%S")
你可以这样做:
>>> from time import strftime, gmtime, localtime >>> strftime('%H:%M:%S', gmtime()) #UTC time >>> strftime('%H:%M:%S', localtime()) # localtime
怎么样 –
time.strftime("%Y-%m-%dT%H:%M:%SZ", time.gmtime(seconds))
如果seconds为None
,则将本地时间转换为UTC时间,否则将时间转换为UTC。
为了避免日光节约等
上述答案都没有帮助我。 下面的代码适用于GMT。
def get_utc_from_local(date_time, local_tz=None): assert date_time.__class__.__name__ == 'datetime' if local_tz is None: local_tz = pytz.timezone(settings.TIME_ZONE) # Django eg, "Europe/London" local_time = local_tz.normalize(local_tz.localize(date_time)) return local_time.astimezone(pytz.utc) import pytz from datetime import datetime summer_11_am = datetime(2011, 7, 1, 11) get_utc_from_local(summer_11_am) >>>datetime.datetime(2011, 7, 1, 10, 0, tzinfo=<UTC>) winter_11_am = datetime(2011, 11, 11, 11) get_utc_from_local(winter_11_am) >>>datetime.datetime(2011, 11, 11, 11, 0, tzinfo=<UTC>)
使用http://crsmithdev.com/arrow/
arrowObj = arrow.Arrow.strptime('2017-02-20 10:00:00', '%Y-%m-%d %H:%M:%S' , 'US/Eastern') arrowObj.to('UTC') or arrowObj.to('local')
这个库使生活变得简单:)
在这种情况下… pytz是最好的lib
import pytz utc = pytz.utc yourdate = datetime.datetime.now() yourdateutc = yourdate.astimezone(utc).replace(tzinfo=None)
- DateTime.TryParse问题,date为yyyy-dd-MM格式
- Linq到SQLdate时间值是本地(Kind = Unspecified) – 我如何使UTC?
- 在golang的date/时间比较
- 如何在java中设置时间到date对象
- DateTime.Parse(“2012-09-30T23:00:00.0000000Z”)总是转换为DateTimeKind.Local
- 新的DateTime()与默认(DateTime)
- Python – 将UTCdate时间string转换为本地date时间
- 如何从当前date减less一个月,并使用java存储在datevariables?
- 如果我的传入date格式是YYYYMMDD,则在.NET中将string转换为date