DateTime

class i75.datetime.Date(year: int, month: int, day: int)

Represents a specific date.

weekday() int

Returns the day of the week. 0 is Monday, 6 is Sunday.

class i75.datetime.DateTime(year: int, month: int, day: int, weekday: int = 0, hour: int = 0, minute: int = 0, second: int = 0, microsecond: int = 0)

Represents a specific date and a time.

weekday() int

Returns the day of the week. 0 is Monday, 6 is Sunday.

class i75.datetime.TimeDelta(days: int = 0, hours: int = 0, seconds: int = 0)

Represents a difference between two times.