├── cookiecutter.json ├── hooks ├── post_gen_project.sh └── pre_gen_project.py ├── readme.md └── {{cookiecutter.project_slug}} ├── .export_rmarkdown.R ├── .first_install.py ├── .gitignore ├── .nbconvert_templates └── ap_report │ ├── ap.svg │ ├── conf.json │ ├── index.html.j2 │ └── static │ └── style.css ├── .set_kernel_path.sh ├── README.md ├── _quarto.yml ├── analysis ├── .gitkeep ├── archive │ └── .gitkeep └── notebook_templates │ └── ap_data_team │ ├── quarto.ipynb │ └── rmarkdown.ipynb ├── data ├── .gitignore ├── documentation │ └── .gitignore ├── handmade │ └── .gitignore ├── html_reports │ └── .gitignore ├── processed │ └── .gitignore ├── public │ └── .gitignore └── source │ └── .gitignore ├── etl └── .gitkeep ├── publish └── .gitkeep └── scratch └── .gitkeep /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /hooks/post_gen_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/hooks/post_gen_project.sh -------------------------------------------------------------------------------- /hooks/pre_gen_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/hooks/pre_gen_project.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/readme.md -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.export_rmarkdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.export_rmarkdown.R -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.first_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.first_install.py -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/ap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/ap.svg -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/conf.json -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/index.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/index.html.j2 -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.nbconvert_templates/ap_report/static/style.css -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/.set_kernel_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/.set_kernel_path.sh -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/README.md -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/_quarto.yml -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/analysis/archive/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/analysis/notebook_templates/ap_data_team/quarto.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/analysis/notebook_templates/ap_data_team/quarto.ipynb -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/analysis/notebook_templates/ap_data_team/rmarkdown.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/analysis/notebook_templates/ap_data_team/rmarkdown.ipynb -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/associatedpress/cookiecutter-python-project/HEAD/{{cookiecutter.project_slug}}/data/.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/data/documentation/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/data/handmade/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/data/html_reports/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/data/processed/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/data/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/data/source/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/etl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/publish/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{cookiecutter.project_slug}}/scratch/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------