{"id":47796454,"url":"https://github.com/fswair/python-template","last_synced_at":"2026-04-03T16:26:53.144Z","repository":{"id":344076447,"uuid":"1180345916","full_name":"fswair/python-template","owner":"fswair","description":"A modern, fully-featured boilerplate for scaling Python projects from development to production.","archived":false,"fork":false,"pushed_at":"2026-03-13T00:40:57.000Z","size":610,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-13T07:50:48.209Z","etag":null,"topics":["project-template","python","python-package-template"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fswair.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"patreon":"venus_ai"}},"created_at":"2026-03-13T00:23:34.000Z","updated_at":"2026-03-13T00:41:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fswair/python-template","commit_stats":null,"previous_names":["fswair/python-template"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/fswair/python-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fswair%2Fpython-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fswair%2Fpython-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fswair%2Fpython-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fswair%2Fpython-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fswair","download_url":"https://codeload.github.com/fswair/python-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fswair%2Fpython-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31362783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T15:19:21.178Z","status":"ssl_error","status_checked_at":"2026-04-03T15:19:20.670Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["project-template","python","python-package-template"],"created_at":"2026-04-03T16:26:52.469Z","updated_at":"2026-04-03T16:26:53.140Z","avatar_url":"https://github.com/fswair.png","language":"Python","funding_links":["https://patreon.com/venus_ai"],"categories":[],"sub_categories":[],"readme":"# Python Template\n\nA modern, fully-featured boilerplate for scaling Python projects from development to production.\n\n## ✨ Features\n\n- **Package Manager:** Lightning-fast environment \u0026 dependency management using [uv](https://github.com/astral-sh/uv).\n- **Linting \u0026 Formatting:** Extremely fast code analysis and formatting via [Ruff](https://github.com/astral-sh/ruff).\n- **Type Checking:** Strict and modern type testing with [basedpyright](https://github.com/DetachHead/basedpyright) and [ty](https://github.com/tyneai/ty).\n- **Testing:** Out-of-the-box setup for [pytest](https://docs.pytest.org/en/latest/).\n- **Documentation:** Beautiful docs setup using [MkDocs Material](https://squidfunk.github.io/mkdocs-material/).\n- **CI/CD Pipeline:** GitHub Actions for automated testing (multi-Python matrix), PyPI trusted publishing, and GitHub Pages deployments.\n- **Developer Experience:** Integrated VS Code settings, `pre-commit` hooks, and a straightforward `Makefile` for daily tasks.\n- **Community Ready:** Issue/PR templates, `CONTRIBUTING.md`, `SECURITY.md`, and an `MIT` License.\n\n## 🚀 Getting Started\n\n### Prerequisites\nMake sure you have [uv](https://github.com/astral-sh/uv) installed on your system.\n\n### Installation\n\n1. Clone this repository (or use it as a GitHub Template):\n   ```bash\n   git clone https://github.com/yourusername/python_template.git\n   cd python_template\n   ```\n\n2. Rename the template to your own project name (updates files, folders, and configs):\n   ```bash\n   make rename my_new_project\n   ```\n\n3. Create a virtual environment and install dependencies:\n   ```bash\n   uv venv\n   source .venv/bin/activate\n   uv pip install -e \".[dev]\"\n   ```\n\n4. Install pre-commit hooks to ensure code quality before commits:\n   ```bash\n   pre-commit install\n   ```\n\n## 🛠️ Development Workflow\n\nA simple `Makefile` is provided to run common development tasks:\n\n- `make format`: Auto-formats the codebase using Ruff.\n- `make check`: Runs Ruff linter and strict type-checkers (basedpyright \u0026 ty).\n- `make tests`: Executes the pytest suite.\n- `make all`: Runs `format` followed by `check`.\n\n*Before pushing your code or opening a PR, always ensure `make all` and `make tests` pass smoothly.*\n\n## 📚 Documentation\n\nTo preview the project documentation locally:\n\n```bash\nmkdocs serve --dev-addr 127.0.0.1:8080\n```\nThis will start a local live-reloading server at `http://127.0.0.1:8080`.\n\n## 📜 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffswair%2Fpython-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffswair%2Fpython-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffswair%2Fpython-template/lists"}