├── .github ├── images │ ├── artifact-registry-tab.png │ ├── create-gar-repo.png │ ├── create-new-repo.png │ ├── enable-artifact-registry.png │ ├── gar-homepage.png │ ├── prefect-api-box.png │ ├── prefect-create-api-key.png │ ├── prefect-create-project.png │ ├── prefect-new-project.png │ ├── prefect-profile.png │ ├── prefect-settings.png │ ├── releasing-actions-finished.png │ ├── releasing-actions-start.png │ ├── releasing-changelog-button.png │ ├── releasing-changelog-entered.png │ ├── releasing-draft-button.png │ ├── releasing-name-release.png │ ├── releasing-name-tag.png │ ├── releasing-publish-button.png │ ├── releasing-pypi.png │ ├── releasing-release-published.png │ ├── releasing-releases-button.png │ ├── releasing-tag-button.png │ ├── repo-add-secret.png │ ├── repo-homepage.png │ ├── repo-secrets.png │ ├── repo-settings.png │ ├── use-this-template-button.png │ └── your-new-repo.png └── workflows │ └── continuous-deployment.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── Makefile ├── Pipfile ├── Pipfile.lock ├── README.md ├── flow.py ├── setup.cfg └── tests ├── __init__.py └── test_flow.py /.github/images/artifact-registry-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/artifact-registry-tab.png -------------------------------------------------------------------------------- /.github/images/create-gar-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/create-gar-repo.png -------------------------------------------------------------------------------- /.github/images/create-new-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/create-new-repo.png -------------------------------------------------------------------------------- /.github/images/enable-artifact-registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/enable-artifact-registry.png -------------------------------------------------------------------------------- /.github/images/gar-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/gar-homepage.png -------------------------------------------------------------------------------- /.github/images/prefect-api-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/prefect-api-box.png -------------------------------------------------------------------------------- /.github/images/prefect-create-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/prefect-create-api-key.png -------------------------------------------------------------------------------- /.github/images/prefect-create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/prefect-create-project.png -------------------------------------------------------------------------------- /.github/images/prefect-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/prefect-new-project.png -------------------------------------------------------------------------------- /.github/images/prefect-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/prefect-profile.png -------------------------------------------------------------------------------- /.github/images/prefect-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/prefect-settings.png -------------------------------------------------------------------------------- /.github/images/releasing-actions-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-actions-finished.png -------------------------------------------------------------------------------- /.github/images/releasing-actions-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-actions-start.png -------------------------------------------------------------------------------- /.github/images/releasing-changelog-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-changelog-button.png -------------------------------------------------------------------------------- /.github/images/releasing-changelog-entered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-changelog-entered.png -------------------------------------------------------------------------------- /.github/images/releasing-draft-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-draft-button.png -------------------------------------------------------------------------------- /.github/images/releasing-name-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-name-release.png -------------------------------------------------------------------------------- /.github/images/releasing-name-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-name-tag.png -------------------------------------------------------------------------------- /.github/images/releasing-publish-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-publish-button.png -------------------------------------------------------------------------------- /.github/images/releasing-pypi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-pypi.png -------------------------------------------------------------------------------- /.github/images/releasing-release-published.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-release-published.png -------------------------------------------------------------------------------- /.github/images/releasing-releases-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-releases-button.png -------------------------------------------------------------------------------- /.github/images/releasing-tag-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/releasing-tag-button.png -------------------------------------------------------------------------------- /.github/images/repo-add-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/repo-add-secret.png -------------------------------------------------------------------------------- /.github/images/repo-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/repo-homepage.png -------------------------------------------------------------------------------- /.github/images/repo-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/repo-secrets.png -------------------------------------------------------------------------------- /.github/images/repo-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/repo-settings.png -------------------------------------------------------------------------------- /.github/images/use-this-template-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/use-this-template-button.png -------------------------------------------------------------------------------- /.github/images/your-new-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/images/your-new-repo.png -------------------------------------------------------------------------------- /.github/workflows/continuous-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.github/workflows/continuous-deployment.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/Makefile -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/README.md -------------------------------------------------------------------------------- /flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/flow.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | extend-ignore = D100,D104,E203,E501 3 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biglocalnews/prefect-flow-template/HEAD/tests/test_flow.py --------------------------------------------------------------------------------