{"id":42234204,"url":"https://github.com/aiopy/python-uvtask","last_synced_at":"2026-01-27T03:15:40.115Z","repository":{"id":330367023,"uuid":"1120560066","full_name":"aiopy/python-uvtask","owner":"aiopy","description":"An extremely fast Python task runner.","archived":false,"fork":false,"pushed_at":"2025-12-25T17:35:40.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-26T13:11:55.192Z","etag":null,"topics":["pyproject","scripts","task-runner","tool","uv","uvtask","uvx"],"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/aiopy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-21T13:32:18.000Z","updated_at":"2025-12-25T17:35:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/aiopy/python-uvtask","commit_stats":null,"previous_names":["aiopy/python-uvtask"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/aiopy/python-uvtask","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiopy%2Fpython-uvtask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiopy%2Fpython-uvtask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiopy%2Fpython-uvtask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiopy%2Fpython-uvtask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aiopy","download_url":"https://codeload.github.com/aiopy/python-uvtask/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aiopy%2Fpython-uvtask/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28798711,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T01:07:07.743Z","status":"online","status_checked_at":"2026-01-27T02:00:07.755Z","response_time":168,"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":["pyproject","scripts","task-runner","tool","uv","uvtask","uvx"],"created_at":"2026-01-27T03:15:39.473Z","updated_at":"2026-01-27T03:15:40.108Z","avatar_url":"https://github.com/aiopy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# uvtask\n\n[![image](https://img.shields.io/pypi/v/uvtask.svg)](https://pypi.python.org/pypi/uvtask)\n[![image](https://img.shields.io/pypi/l/uvtask.svg)](https://pypi.python.org/pypi/uvtask)\n[![image](https://img.shields.io/pypi/pyversions/uvtask.svg)](https://pypi.python.org/pypi/uvtask)\n[![Actions status](https://github.com/aiopy/python-uvtask/actions/workflows/ci.yml/badge.svg)](https://github.com/aiopy/python-uvtask/actions)\n[![PyPIDownloads](https://static.pepy.tech/badge/uvtask)](https://pepy.tech/project/uvtask)\n\nAn extremely fast Python task runner.\n\n\u003e **Note:** This is an **independent, third-party project**, not an official Astral tool. It is highly inspired by and designed to work seamlessly with Astral's excellent tools (such as `uv`/`uvx`, `ruff`, and `ty`). We're grateful for the amazing work the Astral team does for the Python ecosystem!\n\n## Highlights\n\n- ⚡ **Extremely fast** - Built for speed with zero installation overhead\n- 📝 **Simple configuration** - Define scripts in `pyproject.toml`\n- 🔗 **Pre/post hooks** - Automatically run hooks before and after commands\n- 🎨 **Consistent UX** - Maintains visual and stylistic continuity with `uv`'s design language\n\n## 🎯 Quick Start\n\nRun `uvtask` directly with `uvx` (no installation required):\n\n```shell\nuvx uvtask \u003cOPTIONS\u003e [COMMAND]\n```\n\nOr install it and use it directly:\n\n```shell\nuv add --dev uvtask\nuv run uvtask \u003cOPTIONS\u003e [COMMAND]\n```\n\n## 📝 Configuration\n\nDefine your scripts in `pyproject.toml` under the `[tool.run-script]` (or `[tool.uvtask.run-script]`) section:\n\n```toml\n[tool.run-script]\ninstall = \"uv sync --dev --all-extras\"\nformat = \"uv run ruff format .\"\nlint = { command = \"uv run ruff check .\", description = \"Check code quality\" }\ncheck = [\"uv run ty check .\", \"uv run mypy .\"]\npre-test = \"echo 'Running tests...'\"\ntest = \"uv run pytest\"\npost-test = \"echo 'Tests completed!'\"\ndeploy = [\n    \"echo 'Building...'\",\n    \"uv build\",\n    \"echo 'Deploying...'\",\n    \"uv deploy\"\n]\n```\n\n## 🛠️ Development\n\nTo run the development version:\n\n```shell\nuvx -q --no-cache --from $PWD uvtask\n```\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## 📄 License\n\n[MIT](https://github.com/aiopy/python-uvtask/blob/master/LICENSE) © uvtask contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiopy%2Fpython-uvtask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faiopy%2Fpython-uvtask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faiopy%2Fpython-uvtask/lists"}