burmesedate.lists

Lists

  1# /* cSpell:disable */
  2
  3"""
  4Lists
  5"""
  6
  7
  8def set_weekdays():
  9    """
 10    List of weekdays.
 11    0 to 6
 12
 13    Returns:
 14        list: A list of strings representing the weekdays.
 15    """
 16    return [
 17
 18        "Monday",
 19        "Tuesday",
 20        "Wednesday",
 21        "Thursday",
 22        "Friday",
 23        "Saturday",
 24        "Sunday",
 25
 26    ]
 27
 28
 29def set_months():
 30    """
 31    List of months.
 32
 33    Returns:
 34        list: A list of strings representing the months.
 35    """
 36    return [
 37        "January",
 38        "February",
 39        "March",
 40        "April",
 41        "May",
 42        "June",
 43        "July",
 44        "August",
 45        "September",
 46        "October",
 47        "November",
 48        "December",
 49    ]
 50
 51
 52def set_burmese_months():
 53    """
 54    List of Burmese months.
 55    0 to 14
 56
 57    Returns:
 58        list: A list of strings representing the Burmese months.
 59    """
 60    return [
 61        "1st_Waso",
 62        "Tagu",
 63        "Kason",
 64        "Nayon",
 65        "2nd_Waso",
 66        "Wagaung",
 67        "Tawthalin",
 68        "Thadingyut",
 69        "Tazaungmon",
 70        "Nadaw",
 71        "Pyatho",
 72        "Tabodwe",
 73        "Tabaung",
 74        "Late_Tagu",
 75        "Late_Kason"
 76    ]
 77
 78
 79def set_year_types():
 80    """
 81    List of year types.
 82    0 to 2
 83
 84    Returns:
 85        list: A list of strings representing the year types.
 86    """
 87    return [
 88        "Common Year",
 89        "Little Watat Year",
 90        "Big Watat Year"
 91    ]
 92
 93
 94def set_sabbath():
 95    """
 96    List for Sabbath Calculation 
 97    0 to 2
 98
 99    Returns:
100        list: A list of strings representing the sabbath.
101    """
102    return [
103        "false",
104        "Sabbath",
105        "Sabbath Eve"
106    ]
107
108
109def set_yatyaza():
110    """ 
111    List for Yatyaza Calculation
112
113    Return:
114        list: A list of strings representing the Yatyaza
115    """
116    return [
117        "false",
118        "Yatyaza"
119    ]
120
121
122def set_pyathada():
123    """ 
124    List for Pyathada Calculation
125    0 to 2
126
127    Return:
128        list: A list of strings representing the Pyathada
129    """
130    return [
131        "false",
132        "Pyathada",
133        "Afternoon Pyathada"
134    ]
135
136
137def set_nagahle():
138    """ 
139    List for Nagahle Calculation
140    0 to 3
141
142    Return:
143        list: A list of strings representing the Nagahle
144    """
145    return [
146        "west",
147        "north",
148        "east",
149        "south"
150    ]
151
152
153def set_mahabote():
154    """ 
155    List for Mahabote Calculation
156    0 to 6
157
158    Return:
159        list: A list of strings representing the Mahabote
160    """
161    return [
162        "Binga",
163        "Atun",
164        "Yaza",
165        "Adipati",
166        "Marana",
167        "Thike",
168        "Puti"
169    ]
170
171
172def set_nakhat():
173    """ 
174    List for Nakhat Calculation
175    0 to 2
176
177    Return:
178        list: A list of strings representing the Nakhat
179    """
180    return [
181        "Ogre",
182        "Elf",
183        "Human"
184    ]
185
186
187def set_some_astro():
188    """ 
189    Bool list for cal of some astro
190
191    thamanyo, amyeittasote, warameittugyi
192    warameittunge, yatpote,  thamaphyu
193    nagapor, yatpote, mahayatkyan, shanyat
194
195    Return:
196        list:
197    """
198    return [
199        "true",
200        "false"
201    ]
202
203
204def set_moon_phase():
205    return [
206        "Waxing",
207        "Full Moon",
208        "Waning",
209        "New Moon",
210    ]
def set_weekdays():
 9def set_weekdays():
10    """
11    List of weekdays.
12    0 to 6
13
14    Returns:
15        list: A list of strings representing the weekdays.
16    """
17    return [
18
19        "Monday",
20        "Tuesday",
21        "Wednesday",
22        "Thursday",
23        "Friday",
24        "Saturday",
25        "Sunday",
26
27    ]

List of weekdays. 0 to 6

Returns: list: A list of strings representing the weekdays.

def set_months():
30def set_months():
31    """
32    List of months.
33
34    Returns:
35        list: A list of strings representing the months.
36    """
37    return [
38        "January",
39        "February",
40        "March",
41        "April",
42        "May",
43        "June",
44        "July",
45        "August",
46        "September",
47        "October",
48        "November",
49        "December",
50    ]

List of months.

Returns: list: A list of strings representing the months.

def set_burmese_months():
53def set_burmese_months():
54    """
55    List of Burmese months.
56    0 to 14
57
58    Returns:
59        list: A list of strings representing the Burmese months.
60    """
61    return [
62        "1st_Waso",
63        "Tagu",
64        "Kason",
65        "Nayon",
66        "2nd_Waso",
67        "Wagaung",
68        "Tawthalin",
69        "Thadingyut",
70        "Tazaungmon",
71        "Nadaw",
72        "Pyatho",
73        "Tabodwe",
74        "Tabaung",
75        "Late_Tagu",
76        "Late_Kason"
77    ]

List of Burmese months. 0 to 14

Returns: list: A list of strings representing the Burmese months.

def set_year_types():
80def set_year_types():
81    """
82    List of year types.
83    0 to 2
84
85    Returns:
86        list: A list of strings representing the year types.
87    """
88    return [
89        "Common Year",
90        "Little Watat Year",
91        "Big Watat Year"
92    ]

List of year types. 0 to 2

Returns: list: A list of strings representing the year types.

def set_sabbath():
 95def set_sabbath():
 96    """
 97    List for Sabbath Calculation 
 98    0 to 2
 99
100    Returns:
101        list: A list of strings representing the sabbath.
102    """
103    return [
104        "false",
105        "Sabbath",
106        "Sabbath Eve"
107    ]

List for Sabbath Calculation 0 to 2

Returns: list: A list of strings representing the sabbath.

def set_yatyaza():
110def set_yatyaza():
111    """ 
112    List for Yatyaza Calculation
113
114    Return:
115        list: A list of strings representing the Yatyaza
116    """
117    return [
118        "false",
119        "Yatyaza"
120    ]

List for Yatyaza Calculation

Return: list: A list of strings representing the Yatyaza

def set_pyathada():
123def set_pyathada():
124    """ 
125    List for Pyathada Calculation
126    0 to 2
127
128    Return:
129        list: A list of strings representing the Pyathada
130    """
131    return [
132        "false",
133        "Pyathada",
134        "Afternoon Pyathada"
135    ]

List for Pyathada Calculation 0 to 2

Return: list: A list of strings representing the Pyathada

def set_nagahle():
138def set_nagahle():
139    """ 
140    List for Nagahle Calculation
141    0 to 3
142
143    Return:
144        list: A list of strings representing the Nagahle
145    """
146    return [
147        "west",
148        "north",
149        "east",
150        "south"
151    ]

List for Nagahle Calculation 0 to 3

Return: list: A list of strings representing the Nagahle

def set_mahabote():
154def set_mahabote():
155    """ 
156    List for Mahabote Calculation
157    0 to 6
158
159    Return:
160        list: A list of strings representing the Mahabote
161    """
162    return [
163        "Binga",
164        "Atun",
165        "Yaza",
166        "Adipati",
167        "Marana",
168        "Thike",
169        "Puti"
170    ]

List for Mahabote Calculation 0 to 6

Return: list: A list of strings representing the Mahabote

def set_nakhat():
173def set_nakhat():
174    """ 
175    List for Nakhat Calculation
176    0 to 2
177
178    Return:
179        list: A list of strings representing the Nakhat
180    """
181    return [
182        "Ogre",
183        "Elf",
184        "Human"
185    ]

List for Nakhat Calculation 0 to 2

Return: list: A list of strings representing the Nakhat

def set_some_astro():
188def set_some_astro():
189    """ 
190    Bool list for cal of some astro
191
192    thamanyo, amyeittasote, warameittugyi
193    warameittunge, yatpote,  thamaphyu
194    nagapor, yatpote, mahayatkyan, shanyat
195
196    Return:
197        list:
198    """
199    return [
200        "true",
201        "false"
202    ]

Bool list for cal of some astro

thamanyo, amyeittasote, warameittugyi warameittunge, yatpote, thamaphyu nagapor, yatpote, mahayatkyan, shanyat

Return: list:

def set_moon_phase():
205def set_moon_phase():
206    return [
207        "Waxing",
208        "Full Moon",
209        "Waning",
210        "New Moon",
211    ]