Reputation: 11
Having trouble accessing Census 2021 5-year ACS data using the cenpy package in Python. Has anyone else run into this issue?
cxn = cen.products.ACS(2021)
variable = ["B19013_001E"]
data = cxn.query(
cols=variable,
g_unit="tract",
g_filter = {'state': '41',
'county': '101'}
)
NotImplementedError: The requested year (2021) is too early/late. Only 2017, 2018, or 2019 are supported.
I tried using cenpy
to access census 2021 5-year ACS data. I've updated the package and restarted my kernel but I still get the error.
Upvotes: 1
Views: 22