This is the inverse of the date.isocalendar() functionCurrent date or datetime: same as self.__class__.fromtimestamp(time.time()).format -> strftime() style string.Return time tuple, compatible with time.localtime().Return a 3-tuple containing ISO year, week number, and weekday.Return string in ISO 8601 format, YYYY-MM-DD.Return the day of the week represented by the date. Monday == 1 ... Sunday == 7Return proleptic Gregorian ordinal. January 1 of year 1 is day 1.Return the day of the week represented by the date. Monday == 0 ... Sunday == 6Return date with new specified fields.datetime -> string name of time zone.datetime -> timedelta showing offset from UTC, negative values indicating West of UTCdatetime -> DST offset as timedelta positive east of UTC.datetime in UTC -> datetime in local time.If name is specified when timezone is created, returns the name. Otherwise returns offset as 'UTC(+|-)HH:MM'.Return string in ISO 8601 format, [HH[:MM[:SS[.mmm[uuu]]]]][+HH:MM].
The optional argument timespec specifies the number of additional terms of the time to include. Valid options are 'auto', 'hours', 'minutes', 'seconds', 'milliseconds' and 'microseconds'. Return self.tzinfo.utcoffset(self).Return self.tzinfo.tzname(self).Return time with new specified fields.string -> time from time.isoformat() output__reduce_ex__(proto) -> (cls, state)Return a new datetime representing UTC day and time.timestamp[, tz] -> tz's local time from POSIX timestamp.Construct a naive UTC datetime from a POSIX timestamp.string, format -> new datetime parsed from a string (like time.strptime()).date, time -> datetime with same date and time fieldsstring -> datetime from datetime.isoformat() outputReturn date object with same year, month and day.Return time object with same time but with tzinfo=None.Return time object with same time and tzinfo.Return POSIX timestamp as float.Return UTC time tuple, compatible with time.localtime().[sep] -> string in ISO 8601 format, YYYY-MM-DDT[HH[:MM[:SS[.mmm[uuu]]]]][+HH:MM]. sep is used to separate the year from the time, and defaults to 'T'. The optional argument timespec specifies the number of additional terms of the time to include. Valid options are 'auto', 'hours', 'minutes', 'seconds', 'milliseconds' and 'microseconds'. Return datetime with new specified fields.tz -> convert to local time in new timezone tz Fast implementation of the datetime type.������������������������������<����������������� ���$���p���ӎ��x������������X���������������������������������h���i���ȥ��v���@���P������V��� ���\���(���8�����>������D���Difference between two datetime values.
All arguments are optional and default to 0. Arguments may be integers or floats, and may be positive or negative.fromtimestamp($type, timestamp, /) --
Create a date from a POSIX timestamp.
The timestamp is a number, e.g. created via time.time(), that is interpreted as local time.date(year, month, day) --> date objectAbstract base class for time zone info objects.Fixed offset from UTC implementation of tzinfo.time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object
All arguments are optional. tzinfo may be None, or an instance of a tzinfo subclass. The remaining arguments may be ints. now($type, /, tz=None) --
Returns new datetime object representing current time local to tz.
tz Timezone object.
If no tz is specified, uses local timezone.datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]])