XmlDateTime
- class xsdata.models.datatype.XmlDateTime(year: int, month: int, day: int, hour: int, minute: int, second: int, fractional_second: int = 0, offset: int | None = None)[source]
Concrete xs:dateTime builtin type.
Represents iso 8601 date time format [-]CCYY-MM-DDThh :mm: ss[Z|(+|-)hh:mm] with rich comparisons and hashing. :param year: Any signed integer, eg (0, -535, 2020) :param month: Unsigned integer between 1-12 :param day: Unsigned integer between 1-31 :param hour: Unsigned integer between 0-24 :param minute: Unsigned integer between 0-59 :param second: Unsigned integer between 0-59 :param fractional_second: Unsigned integer between 0-999999999 :param offset: Signed integer representing timezone offset in
minutes
- classmethod from_string(string)[source]
Initialize from string with format
%Y-%m-%dT%H:%M:%S%z
- Return type:
- classmethod from_datetime(obj)[source]
Initialize from
datetime.datetime
instance.- Return type:
- to_datetime()[source]
Return a
datetime.datetime
instance.- Return type:
- replace(year=None, month=None, day=None, hour=None, minute=None, second=None, fractional_second=None, offset=True)[source]
Return a new instance replacing the specified fields with new values.
- Return type:
- __str__()[source]
Return the datetime formatted according to ISO 8601 for xml.
- Return type:
- Examples:
2001-10-26T21:32:52
2001-10-26T21:32:52+02:00
2001-10-26T19:32:52Z
2001-10-26T19:32:52.126789
2001-10-26T21:32:52.126
-2001-10-26T21:32:52.126Z
- __add__(value, /)
Return self+value.
- __class_getitem__()
See PEP 585
- __contains__(key, /)
Return key in self.
- __getattribute__(name, /)
Return getattr(self, name).
- __getitem__(key, /)
Return self[key].
- __getnewargs__()
Return self as a plain tuple. Used by copy and pickle.
- __hash__()
Return hash(self).
- __iter__()
Implement iter(self).
- __len__()
Return len(self).
- __mul__(value, /)
Return self*value.
- __rmul__(value, /)
Return value*self.
- count(value, /)
Return number of occurrences of value.
- index(value, start=0, stop=9223372036854775807, /)
Return first index of value.
Raises ValueError if the value is not present.