File tree 3 files changed +4
-1
lines changed
census_data_downloader/core
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Usage: censusdatadownloader [OPTIONS] TABLE COMMAND [ARGS]...
27
27
28
28
Options:
29
29
--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
31
31
latest year. Not all data are available for every year. Submit ' all' to get every year.
32
32
--force Force the downloading of the data
33
33
--help Show this message and exit.
Original file line number Diff line number Diff line change @@ -362,6 +362,7 @@ class CnectasDownloader(BaseGeoTypeDownloader):
362
362
Download raw data at the combined New England city and town level.
363
363
"""
364
364
YEAR_LIST = [
365
+ 2022 ,
365
366
2021 ,
366
367
2020 ,
367
368
2019 ,
@@ -404,6 +405,7 @@ class ZctasDownloader(BaseGeoTypeDownloader):
404
405
Download raw data at the zipcode-tabulation-area level.
405
406
"""
406
407
YEAR_LIST = [
408
+ 2022 ,
407
409
2021 ,
408
410
2020 ,
409
411
2019 ,
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ class BaseTableConfig(object):
19
19
PARENT_DIR = THIS_DIR .parent
20
20
# All available years
21
21
YEAR_LIST = [
22
+ 2022 ,
22
23
2021 ,
23
24
2020 ,
24
25
2019 ,
You can’t perform that action at this time.
0 commit comments