-
Notifications
You must be signed in to change notification settings - Fork 1
/
constants.py
74 lines (73 loc) · 2.24 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python3
states = [['Alabama', 'AL'],
['Alaska', 'AK'],
['Alberta', 'AB'],
['American Samoa', 'AS'],
['Arizona', 'AZ'],
['Arkansas', 'AR'],
['British Columbia', 'BC'],
['California', 'CA'],
['Colorado', 'CO'],
['Connecticut', 'CT'],
['Delaware', 'DE'],
['Florida', 'FL'],
['Georgia', 'GA'],
['Guam', 'GU'],
['Hawaii', 'HI'],
['Idaho', 'ID'],
['Illinois', 'IL'],
['Indiana', 'IN'],
['Iowa', 'IA'],
['Kansas', 'KS'],
['Kentucky', 'KY'],
['Louisiana', 'LA'],
['Maine', 'ME'],
['Manitoba', 'MB'],
['Maryland', 'MD'],
['Massachusetts', 'MA'],
['Michigan', 'MI'],
['Minnesota', 'MN'],
['Mississippi', 'MS'],
['Missouri', 'MO'],
['Montana', 'MT'],
['Nebraska', 'NE'],
['Nevada', 'NV'],
['New Brunswick', 'NB'],
['New Hampshire', 'NH'],
['New Jersey', 'NJ'],
['New Mexico', 'NM'],
['New York', 'NY'],
['Newfoundland and Labrador', 'NL'],
['North Carolina', 'NC'],
['North Dakota', 'ND'],
['Northern Mariana Islands', 'MP'],
['Northwest Territories', 'NT'],
['Nova Scotia', 'NS'],
['Nunavut', 'NU'],
['Ohio', 'OH'],
['Oklahoma', 'OK'],
['Online', 'Online'],
['Ontario', 'ON'],
['Oregon', 'OR'],
['Pennsylvania', 'PA'],
['Prince Edward Island', 'PE'],
['Puerto Rico', 'PR'],
['Quebec', 'QC'],
['Rhode Island', 'RI'],
['Saskatchewan', 'SK'],
['South Carolina', 'SC'],
['South Dakota', 'SD'],
['Tennessee', 'TN'],
['Texas', 'TX'],
['UK', 'UK'],
['US Virgin Islands', 'VI'],
['Utah', 'UT'],
['Vermont', 'VT'],
['Virginia', 'VA'],
['Washington', 'WA'],
['Washington DC', 'DC'],
['West Virginia', 'WV'],
['Wisconsin', 'WI'],
['Wyoming', 'WY'],
['Yukon', 'YT'],
['other', 'other']]