Last active
August 13, 2021 01:05
-
-
Save andrewdoss-bit/2b354dd1837edc2d30ee251b50640f60 to your computer and use it in GitHub Desktop.
Scheduled job
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Activate the venv and navigate to the location of main.py | |
source venv/bin/activate | |
cd simple_pipeline | |
# Uncomment the line below if you would like to re-run the population data pipeline | |
# The population data is only updated annually by the Census Bureau | |
# python main.py -local_source -name acs_population_counties \ | |
# acs_5yr_population_data.csv bitdotio/simple_pipeline.population_counties | |
python main.py -name nyt_cases_counties \ | |
'https://raw.githubusercontent.com/nytimes/covid-19-data/master/us-counties.csv' \ | |
bitdotio/simple_pipeline.cases_counties | |
python main.py -name cdc_vaccines_counties \ | |
'https://data.cdc.gov/api/views/8xkx-amqh/rows.csv?accessType=DOWNLOAD' \ | |
bitdotio/simple_pipeline.vaccinations_counties |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment