“Python 2.7 Datetime to Timestamp” Kod odpowiedzi

Timestamp do tej pory Python

from datetime import datetime

timestamp = 1586507536367
dt_object = datetime.fromtimestamp(timestamp)
Beautiful Bear

Python przekształć datę na znacznik czasu

import time
import datetime
s = "01/12/2011"
time.mktime(datetime.datetime.strptime(s, "%d/%m/%Y").timetuple())
Cautious Crab

Python data znacznika czasu

import datetime
import pytz
# naive datetime
d = datetime.datetime.strptime('01/12/2011', '%d/%m/%Y')
>>> datetime.datetime(2011, 12, 1, 0, 0)

# add proper timezone
pst = pytz.timezone('America/Los_Angeles')
d = pst.localize(d)
>>> datetime.datetime(2011, 12, 1, 0, 0,
tzinfo=<DstTzInfo 'America/Los_Angeles' PST-1 day, 16:00:00 STD>)

# convert to UTC timezone
utc = pytz.UTC
d = d.astimezone(utc)
>>> datetime.datetime(2011, 12, 1, 8, 0, tzinfo=<UTC>)

# epoch is the beginning of time in the UTC timestamp world
epoch = datetime.datetime(1970,1,1,0,0,0,tzinfo=pytz.UTC)
>>> datetime.datetime(1970, 1, 1, 0, 0, tzinfo=<UTC>)

# get the total second difference
ts = (d - epoch).total_seconds()
>>> 1322726400.0
Vivacious Vendace

Python 2.7 Datetime to Timestamp

import time
from datetime import datetime
d = datetime(2017, 6, 11, 0, 0)

unixtime = time.mktime(d.timetuple())
Evil Echidna

Odpowiedzi podobne do “Python 2.7 Datetime to Timestamp”

Pytania podobne do “Python 2.7 Datetime to Timestamp”

Więcej pokrewnych odpowiedzi na “Python 2.7 Datetime to Timestamp” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu