当前位置:  开发笔记 > 编程语言 > 正文

如何在Python中将本地时间转换为UTC?

如何解决《如何在Python中将本地时间转换为UTC?》经验,为你挑选了10个好方法。

如何将本地时间的日期时间字符串转换为UTC时间字符串

我确定我以前做过这个,但找不到它,所以希望能帮助我(以及其他人)在将来做到这一点.

澄清:例如,如果我2008-09-17 14:02:00在我的本地时区(+10)中,我想生成一个具有相同UTC时间的字符串:2008-09-17 04:02:00.

此外,请访问http://lucumr.pocoo.org/2011/7/15/eppur-si-muove/,请注意,一般情况下这不可能与DST和其他问题一样,因此从当地时间到UTC时间.



1> John Milliki..:

首先,将字符串解析为一个天真的日期时间对象.这是datetime.datetime没有附加时区信息的实例.有关datetime.strptime解析日期字符串的信息,请参阅文档.

使用该pytz模块,该模块附带完整的时区列表+ UTC.弄清楚当地时区是什么,从中构建时区对象,并操纵它并将其附加到天真的日期时间.

最后,使用datetime.astimezone()方法将datetime转换为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")


请使用以下代码编辑您的答案:[code] local.localize(naive)[/ code]参见文档:[link](http://pytz.sourceforge.net/#localized-times-and-date-arithmetic )不幸的是,对于许多时区,使用标准日期时间构造函数的'tzinfo参数''与pytz不兼容.>>> datetime(2002,10,27,12,0,0,tzinfo = amsterdam).strftime(fmt)'2002-10-27 12:00:00 AMT + 0020'
显然,“弄清楚本地时区是什么”这一步骤证明了[听起来很难](http://regebro.wordpress.com/2008/05/13/thanks-for-the-testing-help-conclusions/)(几乎是不可能的)。
您可以使用[使用`tzlocal.get_localzone()`将本地时区设为`pytz` tzinfo对象](http://stackoverflow.com/q/13218506/4279)

2> monkut..:

datetime模块的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'

如果您准备好接受时区转换,请阅读以下内容:

https://medium.com/@eleroy/10-things-you-need-to-know-about-date-and-time-in-python-with-datetime-pytz-dateutil-timedelta-309bfbafb3f7


这只会转换当前时间,我需要占用任何给定时间(作为字符串)并转换为UTC.
它仅适用于当前时间,因为过去和未来的时间戳可能由于DST而具有不同的UTC偏移.

3> Tom..:

谢谢@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
string - > tuple(未应用时区,因此匹配字符串)

time.mktime
本地时间元组 - >自纪元以来的秒数(始终是当地时间)

time.gmtime
自纪元以来的秒数 - > UTC中的元组

calendar.timegm
UTC中的元组 - >自纪元以来的秒数

time.localtime
自纪元以来的秒数 - >当地时区的元组


在DST过渡期间,它有50%的可能性失败.请参阅[本地时间问题](http://pytz.sourceforge.net/#problems-with-localtime)
`(总是本地时间)`似乎是错误的:mktime()的输入是本地时间,输出是自纪元以来的秒数(`1970-01-01 00:00:00 +0000(UTC)`)取决于时区.

4> akaihola..:

以下是常见Python时间转换的摘要.

有些方法会丢弃几秒钟,并标有(s).ts = (d - epoch) / unit可以使用显式公式(感谢jfs).

struct_time(UTC)→POSIX (S) :
calendar.timegm(struct_time)

朴素的日期时间(本地)→POSIX (S) :(
calendar.timegm(stz.localize(dt, is_dst=None).utctimetuple())
期间DST转换的异常,请参阅JFS评论)

朴素的日期时间(UTC)→POSIX (S) :
calendar.timegm(dt.utctimetuple())

知道日期时间→POSIX (S) :
calendar.timegm(dt.utctimetuple())

POSIX→struct_time(UTC,s):(
time.gmtime(t)
参见jfs的评论)

初始日期时间(本地)→struct_time(UTC,s):(
stz.localize(dt, is_dst=None).utctimetuple()
DST转换期间的异常,请参阅jfs的注释)

天使日期时间(UTC)→struct_time(UTC,s):
dt.utctimetuple()

意识到datetime→struct_time(UTC,s):
dt.utctimetuple()

POSIX→Naïvedatetime(local):(
datetime.fromtimestamp(t, None)
在某些条件下可能会失败,请参阅下面的jfs注释)

struct_time(UTC)→Naïvedatetime(local,s):(
datetime.datetime(struct_time[:6], tzinfo=UTC).astimezone(tz).replace(tzinfo=None)
不能代表闰秒,请参阅jfs的注释)

天用日期时间(UTC)→天用日期时间(本地):
dt.replace(tzinfo=UTC).astimezone(tz).replace(tzinfo=None)

意识到日期时间→天使日期时间(本地):
dt.astimezone(tz).replace(tzinfo=None)

POSIX→Naïvedatetime(UTC):
datetime.utcfromtimestamp(t)

struct_time(UTC)→Naïvedatetime(UTC,s):(
datetime.datetime(*struct_time[:6])
不能代表闰秒,请参阅jfs的注释)

初始日期时间(本地)→天使日期时间(UTC):(
stz.localize(dt, is_dst=None).astimezone(UTC).replace(tzinfo=None)
DST转换期间的异常,请参阅jfs的注释)

意识到日期时间→天使日期时间(UTC):
dt.astimezone(UTC).replace(tzinfo=None)

POSIX→感知日期时间:(
datetime.fromtimestamp(t, tz)
对于非pytz时区可能会失败)

struct_time(UTC)→感知日期时间(S) :(
datetime.datetime(struct_time[:6], tzinfo=UTC).astimezone(tz)
不能代表闰秒,看到JFS评论)

天会日期时间(本地)→意识到日期时间:(
stz.localize(dt, is_dst=None)
DST转换期间的异常,请参阅jfs的评论)

天真日期时间(UTC)→意识到日期时间:
dt.replace(tzinfo=UTC)

资料来源:taaviburns.ca



5> Chuck Calleb..:
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())


如果你的源是datetime.datetime对象`t`,请调用:local_to_utc(t.timetuple())
`.timetuple()`调用将`tm_isdst`设置为`-1`; 在DST过渡期间,有50%的可能性`mktime()`失败.

6> Yarin..:

我对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 UTC日期时间字符串转换为本地日期时间的答案)



7> Paulius Slad..:

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'



8> 小智..:

我用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


[`dateutil`可能在过去的日期中失败](http://stackoverflow.com/questions/79797/how-do-i-convert-local-time-to-utc-in-python/2175170#comment30454158_8563126)

9> 小智..:
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'



10> user235042..:

如果您更喜欢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")


这是不正确的。如果本地时区不是UTC,则失败。“ mktime()”期望本地时间作为输入。fromtimestamp()返回本地时间,而不是utc。如果您对其进行修复,则会看到这些[其他问题(例如,“ dateutil”,仅stdlib解决方案可能会失败)](http://stackoverflow.com/questions/79797/how-do-i-convert-local-time-to -utc-in-python#comment30454158_8563126)
推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有