3
i [ @ s6 d dl Z d dlmZ d dlZd dlmZ dddZdS ) N)datetime)FixedOffsetFc
C s t jdt jt jB }|j| }|dk r|jddkrL|dkrDd}q|tj}n0|dkr^tdnt t
|jdt
|jd}|jd
}|dkrd}nt
tt|d }t
t
|jdt
|jdt
|jdt
|jdt
|jdt
|jd||d}|r|jtj}|S tddS )a
Parse an :RFC:`3339`-formatted timestamp and return a
`datetime.datetime`.
If the timestamp is presented in UTC, then the `tzinfo` parameter of the
returned `datetime` will be set to `pytz.utc`.
>>> parse('2009-01-01T10:01:02Z')
datetime.datetime(2009, 1, 1, 10, 1, 2, tzinfo=)
Otherwise, a `tzinfo` instance is created with the appropriate offset, and
the `tzinfo` parameter of the returned `datetime` is set to that value.
>>> parse('2009-01-01T14:01:02-04:00')
datetime.datetime(2009, 1, 1, 14, 1, 2, tzinfo=)
However, if `parse()` is called with `utc=True`, then the returned
`datetime` will be normalized to UTC (and its tzinfo parameter set to
`pytz.utc`), regardless of the input timezone.
>>> parse('2009-01-01T06:01:02-04:00', utc=True)
datetime.datetime(2009, 1, 1, 10, 1, 2, tzinfo=)
The input is strictly required to conform to :RFC:`3339`, and appropriate
exceptions are thrown for invalid input.
>>> parse('2009-01-01T06:01:02')
Traceback (most recent call last):
...
ValueError: timestamp does not conform to RFC 3339
>>> parse('2009-01-01T25:01:02Z')
Traceback (most recent call last):
...
ValueError: hour must be in 0..23
aB ^(?:(?:(?P[0-9]{4})\-(?P[0-9]{2})\-(?P[0-9]{2}))T(?:(?:(?P[0-9]{2})\:(?P[0-9]{2})\:(?P[0-9]{2})(?P(?:\.[0-9]{1,}))?)(?P(?:Z|(?P(?P(?:\+|\-)[0-9]{2})\:(?P[0-9]{2}))))))$NZtime_offsetZz+00:00-00:00Tz%cannot produce a naive datetime from za local timestampZtime_houroffsetZtime_minuteoffsetZtime_secfracr i@B Z
date_fullyearZ
date_monthZ date_mdayZ time_hourZtime_minuteZtime_second)ZyearZmonthZdayZhourZminutesecondmicrosecondtzinfoz×tamp does not conform to RFC 3339)r r r r z6cannot produce a naive datetime from a local timestamp)recompileIXmatchgrouppytzutc
ValueErrorr introundfloatr Z
astimezone) Z timestampr Z
produce_naiveZparse_rer r
Zsecfracr Zdt_out r /usr/lib/python3.6/parser.pyparse s: '
r )FF)r r r Zpyrfc3339.utilsr r r r r r s