{"id":49242376,"url":"https://github.com/humblebeeai/module-python-template","last_synced_at":"2026-04-24T20:08:01.118Z","repository":{"id":269905265,"uuid":"908811676","full_name":"humblebeeai/module-python-template","owner":"humblebeeai","description":"This is a template repository for python module projects.","archived":false,"fork":false,"pushed_at":"2026-03-04T08:50:42.000Z","size":853,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"cookiecutter","last_synced_at":"2026-03-04T14:54:17.235Z","etag":null,"topics":["cicd","github-actions","lib","module","package","pip","pypi","pytest","python","scripts","software-engineering","template","wheel"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"bybatkhuu/module.python-template","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/humblebeeai.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-27T03:10:01.000Z","updated_at":"2026-03-04T08:50:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"091a8350-ff57-4736-8fde-ed053f5cd875","html_url":"https://github.com/humblebeeai/module-python-template","commit_stats":null,"previous_names":["humblebeeintel/module.python-template","humblebeeai/module.python-template","humblebeeai/hb.module-python-template","humblebeeai/module-python-template"],"tags_count":11,"template":true,"template_full_name":null,"purl":"pkg:github/humblebeeai/module-python-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humblebeeai%2Fmodule-python-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humblebeeai%2Fmodule-python-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humblebeeai%2Fmodule-python-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humblebeeai%2Fmodule-python-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/humblebeeai","download_url":"https://codeload.github.com/humblebeeai/module-python-template/tar.gz/refs/heads/cookiecutter","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/humblebeeai%2Fmodule-python-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32238810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cicd","github-actions","lib","module","package","pip","pypi","pytest","python","scripts","software-engineering","template","wheel"],"created_at":"2026-04-24T20:08:00.374Z","updated_at":"2026-04-24T20:08:01.111Z","avatar_url":"https://github.com/humblebeeai.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python Module Template (Cookiecutter)\n\nThis is a cookiecutter template for python module projects.\n\n## ✨ Features\n\n- Cookiecutter\n- Python module/package\n- Project Structure\n- Boilerplate/Template\n- Best Practices\n- Configuration\n- Test\n- Build\n- Documentation\n- Scripts\n- Examples\n- CI/CD\n\n---\n\n## 🐤 Getting started\n\n### 1. 🚧 Prerequisites\n\n- Install **Python (\u003e= v3.10)** and **pip (\u003e= 23)**:\n    - **[RECOMMENDED] [Miniconda (v3)](https://www.anaconda.com/docs/getting-started/miniconda/install)**\n    - *[arm64/aarch64] [Miniforge (v3)](https://github.com/conda-forge/miniforge)*\n    - *[Python virtual environment] [venv](https://docs.python.org/3/library/venv.html)*\n\nFor **DEVELOPMENT** environment:\n\n- Install [**git**](https://git-scm.com/downloads)\n- Setup an [**SSH key**](https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh)\n\n### 2. 📥 Download or clone the repository\n\n```sh\n# Create projects directory:\nmkdir -pv ~/workspaces/projects\n\n# Enter into projects directory:\ncd ~/workspaces/projects\n\n# Clone the repository:\ngit clone [REPOSITORY_URL]\n# Or download and extract the repository from GitHub:\n# 1. Go to the repository on GitHub.\n# 2. Click on the \"Code\" button.\n# 3. Select \"Download ZIP\" and save the file to your computer.\n# 4. Extract the ZIP file in current directory.\n\n# Enter into the repository:\ncd module-python-template\n\n# Change to cookiecutter branch:\ngit checkout cookiecutter\n```\n\n### 3. 📦 Install cookiecutter\n\n```bash\n# Install cookiecutter:\npip install -r ./requirements.txt\n# Install pre-commit hooks:\npre-commit install\n```\n\n### 4. 🏗️ Generate project with cookiecutter\n\n```bash\n# Generate project:\ncookiecutter -f .\n# Or:\n./scripts/build.sh\n```\n\n### 5. 🏁 Start the project\n\n```bash\ncd [PROJECT_NAME]\n```\n\n👍\n\n---\n\n## 📑 References\n\n- Cookiecutter (GitHub) - \u003chttps://github.com/cookiecutter/cookiecutter\u003e\n- Cookiecutter (Docs) - \u003chttps://cookiecutter.readthedocs.io/en/stable\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhumblebeeai%2Fmodule-python-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhumblebeeai%2Fmodule-python-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhumblebeeai%2Fmodule-python-template/lists"}