├── .github ├── dependabot.yml └── workflows │ ├── nightly-build.yaml │ ├── publish-book.yaml │ ├── trigger-book-build.yaml │ ├── trigger-delete-preview.yaml │ ├── trigger-link-check.yaml │ ├── trigger-preview.yaml │ └── trigger-replace-links.yaml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── CITATION.cff ├── LICENSE ├── README.md ├── _gallery_info.yml ├── environment.yml ├── myst.yml ├── notebooks ├── how-to-cite.md └── notebook-template.ipynb └── thumbnails ├── thumbnail.png └── thumbnail.svg /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/workflows/nightly-build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/workflows/publish-book.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-book-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/workflows/trigger-book-build.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-delete-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/workflows/trigger-delete-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-link-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/workflows/trigger-link-check.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/workflows/trigger-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-replace-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.github/workflows/trigger-replace-links.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | known_third_party = 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/README.md -------------------------------------------------------------------------------- /_gallery_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/_gallery_info.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/environment.yml -------------------------------------------------------------------------------- /myst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/myst.yml -------------------------------------------------------------------------------- /notebooks/how-to-cite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/notebooks/how-to-cite.md -------------------------------------------------------------------------------- /notebooks/notebook-template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/notebooks/notebook-template.ipynb -------------------------------------------------------------------------------- /thumbnails/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/thumbnails/thumbnail.png -------------------------------------------------------------------------------- /thumbnails/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cookbook-template/HEAD/thumbnails/thumbnail.svg --------------------------------------------------------------------------------