web-dev-qa-db-ja.com

Pythonタイムゾーン変換

私は時間を入力してからpythonそれを他のタイムゾーンに変換する(おそらく最大10の異なるタイムゾーン)の簡単な方法を探しています

ごめんなさい。私はpythonの時間に慣れていません。誰かが正しい方向に私を置くことができれば、本当に感謝しています。

54
Trying_hard

最適なアプローチは、関心のある「モーメント」をutc-timezone対応のdatetimeオブジェクトに変換することです(pythonでは、 datetime オブジェクトにはtimezoneコンポーネントは必要ありません)。

次に、 astimezone を使用して、目的のタイムゾーンに変換できます( reference )。

from datetime import datetime
import pytz

utcmoment_naive = datetime.utcnow()
utcmoment = utcmoment_naive.replace(tzinfo=pytz.utc)

# print "utcmoment_naive: {0}".format(utcmoment_naive) # python 2
print("utcmoment_naive: {0}".format(utcmoment_naive))
print("utcmoment:       {0}".format(utcmoment))

localFormat = "%Y-%m-%d %H:%M:%S"

timezones = ['America/Los_Angeles', 'Europe/Madrid', 'America/Puerto_Rico']

for tz in timezones:
    localDatetime = utcmoment.astimezone(pytz.timezone(tz))
    print(localDatetime.strftime(localFormat))

# utcmoment_naive: 2017-05-11 17:43:30.802644
# utcmoment:       2017-05-11 17:43:30.802644+00:00
# 2017-05-11 10:43:30
# 2017-05-11 19:43:30
# 2017-05-11 13:43:30

したがって、ローカルタイムゾーン( exists である時間)に関心がある瞬間に、このようにutcに変換します( reference )。

localmoment_naive = datetime.strptime('2013-09-06 14:05:10', localFormat)

localtimezone = pytz.timezone('Australia/Adelaide')

try:
    localmoment = localtimezone.localize(localmoment_naive, is_dst=None)
    print("Time exists")

    utcmoment = localmoment.astimezone(pytz.utc)

except pytz.exceptions.NonExistentTimeError as e:
    print("NonExistentTimeError")
73
juan

pytz を使用する

from datetime import datetime
from pytz import timezone

fmt = "%Y-%m-%d %H:%M:%S %Z%z"
timezonelist = ['UTC','US/Pacific','Europe/Berlin']
for zone in timezonelist:

    now_time = datetime.now(timezone(zone))
    print now_time.strftime(fmt)
41
shiva

Pythonで1つのタイムゾーンの時間を別のタイムゾーンに変換するには、 se datetime.astimezone()

_time_in_new_timezone = time_in_old_timezone.astimezone(new_timezone)
_

_aware_dt_(特定のタイムゾーンのdatetimeオブジェクト)を指定して、それを他のタイムゾーンに変換し、指定された時間形式で時間を出力します。

_#!/usr/bin/env python3
import pytz  # $ pip install pytz

time_format = "%Y-%m-%d %H:%M:%S%z"
tzids = ['Asia/Shanghai', 'Europe/London', 'America/New_York']
for tz in map(pytz.timezone, tzids):
    time_in_tz = aware_dt.astimezone(tz)
    print(f"{time_in_tz:{time_format}}")
_

_f""_構文が使用できない場合は、"".format(**vars())に置き換えることができます

ローカルタイムゾーンの現在時刻から_aware_dt_を設定できる場所:

_from datetime import datetime
import tzlocal  # $ pip install tzlocal

local_timezone = tzlocal.get_localzone()
aware_dt = datetime.now(local_timezone) # the current time
_

または、ローカルタイムゾーンの入力時間文字列から:

_naive_dt = datetime.strptime(time_string, time_format)
aware_dt = local_timezone.localize(naive_dt, is_dst=None)
_

ここで、_time_string_は、_'2016-11-19 02:21:42'_のようになります。 _time_format = '%Y-%m-%d %H:%M:%S'_に対応します。

_is_dst=None_は、入力時間文字列がDST移行時など、存在しないまたはあいまいなローカル時間に対応する場合、例外を強制します。 _is_dst=False_、_is_dst=True_を渡すこともできます。 Python:日時/タイムスタンプをあるタイムゾーンから別のタイムゾーンに変換するにはどうすればよいですか? のリンクを参照してください。

7
jfs

Pythonタイムゾーン変換には、PyCon 2012の 便利なテーブル を使用します プレゼンテーション Taavi Burns氏。

4
akaihola
import datetime
import pytz

def convert_datetime_timezone(dt, tz1, tz2):
    tz1 = pytz.timezone(tz1)
    tz2 = pytz.timezone(tz2)

    dt = datetime.datetime.strptime(dt,"%Y-%m-%d %H:%M:%S")
    dt = tz1.localize(dt)
    dt = dt.astimezone(tz2)
    dt = dt.strftime("%Y-%m-%d %H:%M:%S")

    return dt

-

  • dt:日時文字列
  • tz1:初期タイムゾーン
  • tz2:ターゲットタイムゾーン

-

> convert_datetime_timezone("2017-05-13 14:56:32", "Europe/Berlin", "PST8PDT")
'2017-05-13 05:56:32'

> convert_datetime_timezone("2017-05-13 14:56:32", "Europe/Berlin", "UTC")
'2017-05-13 12:56:32'

-

> pytz.all_timezones[0:10]
['Africa/Abidjan',
 'Africa/Accra',
 'Africa/Addis_Ababa',
 'Africa/Algiers',
 'Africa/Asmara',
 'Africa/Asmera',
 'Africa/Bamako',
 'Africa/Bangui',
 'Africa/Banjul',
 'Africa/Bissau']
4
Raffael

注:この回答の最初の部分は、振り子のバージョン1.xです。バージョン2.xの回答については、以下を参照してください。

私は手遅れではないことを願っています!

pendulum ライブラリは、このおよび他の日時の計算に優れています。

>>> import pendulum
>>> some_time_zones = ['Europe/Paris', 'Europe/Moscow', 'America/Toronto', 'UTC', 'Canada/Pacific', 'Asia/Macao']
>>> heres_a_time = '1996-03-25 12:03 -0400'
>>> pendulum_time = pendulum.datetime.strptime(heres_a_time, '%Y-%m-%d %H:%M %z')
>>> for tz in some_time_zones:
...     tz, pendulum_time.astimezone(tz)
...     
('Europe/Paris', <Pendulum [1996-03-25T17:03:00+01:00]>)
('Europe/Moscow', <Pendulum [1996-03-25T19:03:00+03:00]>)
('America/Toronto', <Pendulum [1996-03-25T11:03:00-05:00]>)
('UTC', <Pendulum [1996-03-25T16:03:00+00:00]>)
('Canada/Pacific', <Pendulum [1996-03-25T08:03:00-08:00]>)
('Asia/Macao', <Pendulum [1996-03-26T00:03:00+08:00]>)

Answer は、振り子で使用できるタイムゾーンの名前を一覧表示します。 (それらはpytzと同じです。)

バージョン2の場合:

  • some_time_zonesは、プログラムで使用される可能性のあるタイムゾーンの名前のリストです
  • heres_a_timeはサンプル時間で、 '-0400'の形式のタイムゾーンで完了します
  • 後続の処理のために時間を振り子時間に変換することから始めます
  • これで、show_time_zonesの各タイムゾーンでこの時間を表示できます

...

>>> import pendulum
>>> some_time_zones = ['Europe/Paris', 'Europe/Moscow', 'America/Toronto', 'UTC', 'Canada/Pacific', 'Asia/Macao']
>>> heres_a_time = '1996-03-25 12:03 -0400'
>>> pendulum_time = pendulum.from_format('1996-03-25 12:03 -0400', 'YYYY-MM-DD hh:mm ZZ')
>>> for tz in some_time_zones:
...     tz, pendulum_time.in_tz(tz)
...     
('Europe/Paris', DateTime(1996, 3, 25, 17, 3, 0, tzinfo=Timezone('Europe/Paris')))
('Europe/Moscow', DateTime(1996, 3, 25, 19, 3, 0, tzinfo=Timezone('Europe/Moscow')))
('America/Toronto', DateTime(1996, 3, 25, 11, 3, 0, tzinfo=Timezone('America/Toronto')))
('UTC', DateTime(1996, 3, 25, 16, 3, 0, tzinfo=Timezone('UTC')))
('Canada/Pacific', DateTime(1996, 3, 25, 8, 3, 0, tzinfo=Timezone('Canada/Pacific')))
('Asia/Macao', DateTime(1996, 3, 26, 0, 3, 0, tzinfo=Timezone('Asia/Macao')))
4
Bill Bell

For Python 3.2+ simple-date は、物事を単純化しようとするpytzのラッパーです。

timeがある場合

SimpleDate(time).convert(tz="...")

あなたがしたいことをするかもしれません。しかし、タイムゾーンは非常に複雑なものであるため、かなり複雑になる可能性があります- ドキュメント を参照してください。

2
andrew cooke