I have this code that is getting all data from CDC. However, what I want is to get the data starting at a specific date, like all data after 04/03/2022 for example. Is it possible to do that?
#Source: https://data.cdc.gov/Vaccinations/COVID-19-Vaccinations-in-the-United-States-County/8xkx-amqh/
urlData = requests.get('https://data.cdc.gov/api/views/8xkx-amqh/rows.csv?accessType=DOWNLOAD').content
# Convert to pandas DataFrame
vcounty_df = pd.read_csv(io.StringIO(urlData.decode('utf-8')))