{"id":20059115,"url":"https://github.com/beam-pyio/pyio-cookiecutter","last_synced_at":"2026-06-08T12:32:13.331Z","repository":{"id":240143718,"uuid":"801804284","full_name":"beam-pyio/pyio-cookiecutter","owner":"beam-pyio","description":"Cookiecutter template for creating a package for the Apache Beam Python I/O Connectors project","archived":false,"fork":false,"pushed_at":"2024-09-17T23:59:14.000Z","size":234,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-02T09:45:33.854Z","etag":null,"topics":["apache-beam","apache-beam-io","cookiecutter-template","python"],"latest_commit_sha":null,"homepage":"https://beam-pyio.github.io/pyio-cookiecutter/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beam-pyio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-17T00:23:36.000Z","updated_at":"2024-09-17T23:59:17.000Z","dependencies_parsed_at":"2024-07-10T02:32:21.845Z","dependency_job_id":"d7581df2-f886-462b-b41e-61ba14fe4e39","html_url":"https://github.com/beam-pyio/pyio-cookiecutter","commit_stats":null,"previous_names":["beam-pyio/pyio-cookiecutter"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/beam-pyio/pyio-cookiecutter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beam-pyio%2Fpyio-cookiecutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beam-pyio%2Fpyio-cookiecutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beam-pyio%2Fpyio-cookiecutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beam-pyio%2Fpyio-cookiecutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beam-pyio","download_url":"https://codeload.github.com/beam-pyio/pyio-cookiecutter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beam-pyio%2Fpyio-cookiecutter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34063149,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apache-beam","apache-beam-io","cookiecutter-template","python"],"created_at":"2024-11-13T13:06:05.438Z","updated_at":"2026-06-08T12:32:13.317Z","avatar_url":"https://github.com/beam-pyio.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apache Beam Python I/O Cookiecutter\n\n![doc](https://github.com/beam-pyio/pyio-cookiecutter/workflows/doc/badge.svg)\n![test](https://github.com/beam-pyio/pyio-cookiecutter/workflows/test/badge.svg)\n[![release](https://img.shields.io/github/release/beam-pyio/pyio-cookiecutter.svg)](https://github.com/beam-pyio/pyio-cookiecutter/releases)\n![python](https://img.shields.io/badge/python-3.8%2C%203.9%2C%203.10%2C%203.11%2C%203.12-blue)\n![os](https://img.shields.io/badge/OS-Ubuntu%2C%20Mac%2C%20Windows-purple)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"docs/source/_static/logo.png\" width=\"220\" alt=\"pyio-cookiecutter logo\"\u003e\n\u003c/p\u003e\n\n\u003cbr\u003e\n\n`pyio-cookiecutter` is a [`cookiecutter`](https://cookiecutter.readthedocs.io/en/latest/) template for creating a package for the [Apache Beam Python I/O Connectors](https://github.com/beam-pyio) project using [`poetry`](https://python-poetry.org).\n\n## Usage\n\nPlease see the [documentation](https://beam-pyio.github.io/pyio-cookiecutter/) for more detail on using `pyio-cookiecutter`. We provide the fundamental steps below:\n\n1. Install [`cookiecutter`](https://cookiecutter.readthedocs.io/en/latest/):\n\n    ```bash\n    pip install cookiecutter\n    ```\n\n2. Generate a Python package structure using [`pyio-cookiecutter`](https://github.com/beam-pyio/pyio-cookiecutter):\n\n    ```bash\n    cookiecutter https://github.com/beam-pyio/pyio-cookiecutter.git\n    ```\n\n3. After responding to the prompts you should have a directory structure similar to that shown below. To learn more about the contents of this directory structure, please see the `pyio-cookiecutter` [documentation](https://beam-pyio.github.io/pyio-cookiecutter/).\n\n    ```text\n    pkg\n    ├── .github                    ┐\n    │   └── workflows              │\n    │       ├── doc.yml            │ GitHub Actions workflow\n    │       ├── release.yml        │\n    │       └── test.yml           ┘\n    ├── .gitignore                 ┐\n    ├── CHANGELOG.md               │\n    ├── CONDUCT.md                 │\n    ├── CONTRIBUTING.md            │\n    ├── LICENSE                    │\n    ├── README.md                  ┘\n    ├── docs                       ┐\n    │   ├── Makefile               │\n    │   ├── changelog.md           │\n    │   ├── conduct.md             │ Package documentation\n    │   ├── conf.py                │\n    │   ├── contributing.md        │\n    │   ├── index.md               │\n    │   └── requirements.txt       ┘\n    ├── pyproject.toml             ┐ \n    ├── src                        │\n    │   └── pkg                    │ Package source code, metadata,\n    │       ├── __init__.py        │ and build instructions \n    │       └── pkg.py             ┘\n    └── tests                      ┐\n        └── test_pkg.py            ┘ Package tests\n    ```\n\n## Contributing\n\nInterested in contributing? Check out the [Contributing Guidelines](https://beam-pyio.github.io/pyio-cookiecutter/contributing.html). Please note that this project is released with a [Code of Conduct](https://beam-pyio.github.io/pyio-cookiecutter/conduct.html). By contributing to this project, you agree to abide by its terms.\n\n## License\n\n`pyio-cookiecutter` is licensed under the terms of the BSD license.\n\n## Acknowledgements\n\n`pyio-cookiecutter` was originally developed for use in the [Apache Beam Python I/O Connectors](https://github.com/beam-pyio) project. It was inspired by the `Py-Pkgs-Cookiecutter` [template](https://github.com/py-pkgs/py-pkgs-cookiecutter).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeam-pyio%2Fpyio-cookiecutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeam-pyio%2Fpyio-cookiecutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeam-pyio%2Fpyio-cookiecutter/lists"}