annual.model

Data structures and enumerations.

Classes

Month

Enumerate the months of the year.

WeekDay

Enumerate the days of the week.

Module Contents

class annual.model.Month(*args, **kwds)

Bases: enum.Enum

Enumerate the months of the year.

JANUARY = 1
FEBRUARY = 2
MARCH = 3
APRIL = 4
MAY = 5
JUNE = 6
JULY = 7
AUGUST = 8
SEPTEMBER = 9
OCTOBER = 10
NOVEMBER = 11
DECEMBER = 12
class annual.model.WeekDay(*args, **kwds)

Bases: enum.Enum

Enumerate the days of the week.

MONDAY = 0
TUESDAY = 1
WEDNESDAY = 2
THURSDAY = 3
FRIDAY = 4
SATURDAY = 5
SUNDAY = 6