-
Notifications
You must be signed in to change notification settings - Fork 1
/
census_parameters.py
22 lines (20 loc) · 967 Bytes
/
census_parameters.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
census_dictionary = {
# Structure: code: [Name, Reporting Schedule]
"vip": ["Construction Spending", "monthly"],
"ressales": ["New Home Sales", "monthly"],
"resconst": ["New Residential Construction", "monthly"],
"mwts": ["Monthly Wholesale Trade Inventories", "monthly"],
"marts": ["Advance Monthly Retail Sales", "monthly"],
"mtis": ["Monthly Trade & Inventory Sales", "monthly"],
"mrts": ["Monthly Retail Sales", "monthly"],
"advm3": ["Advance Report on Durable Goods", "monthly"],
"m3": ["Manufacturer’s Shipments Inventories & Orders", "monthly"],
"ftd": ["International Trade", "monthly"],
"hv": ["Housing Vacancies & Homeownership Rate", "quarterly"],
"qss": ["Quarterly Services", "quarterly"],
"qfr": ["Quarterly Financial Report", "quarterly"],
"bfs": ["Business Formation Statistics", "quarterly"]
}
def get_census_codes():
census_codes = census_dictionary.keys()
return census_codes