Skip to content

Commit 5e75334

Browse files
committed
update
1 parent d622565 commit 5e75334

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Usage: censusdatadownloader [OPTIONS] TABLE COMMAND [ARGS]...
2727

2828
Options:
2929
--data-dir TEXT The folder where you want to download the data
30-
--year [2009-2021] The years of data to download. By default it gets only the
30+
--year [2009-2022] The years of data to download. By default it gets only the
3131
latest year. Not all data are available for every year. Submit 'all' to get every year.
3232
--force Force the downloading of the data
3333
--help Show this message and exit.

census_data_downloader/core/geotypes.py

+2
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ class CnectasDownloader(BaseGeoTypeDownloader):
362362
Download raw data at the combined New England city and town level.
363363
"""
364364
YEAR_LIST = [
365+
2022,
365366
2021,
366367
2020,
367368
2019,
@@ -404,6 +405,7 @@ class ZctasDownloader(BaseGeoTypeDownloader):
404405
Download raw data at the zipcode-tabulation-area level.
405406
"""
406407
YEAR_LIST = [
408+
2022,
407409
2021,
408410
2020,
409411
2019,

census_data_downloader/core/tables.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class BaseTableConfig(object):
1919
PARENT_DIR = THIS_DIR.parent
2020
# All available years
2121
YEAR_LIST = [
22+
2022,
2223
2021,
2324
2020,
2425
2019,

0 commit comments

Comments
 (0)