skillfed

taskipy

tasks runner for python projects

taskipy v1.14.1 1.2M downloads/30d#4,227 on PyPI721
Permissive license MIT DORMANT released

What it is and what it does

Taskipy is a lightweight task runner for Python projects that replaces ad-hoc shell commands with named tasks defined in your pyproject.toml file. Instead of memorizing and typing long commands like `python -m unittest tests/test_*.py`, you define a task once and run it with `task test`. It supports task composition (chaining tasks together), pre and post hooks for task dependencies, variable substitution for DRY configuration, and command-line argument pass-through.

The package is designed as a Python equivalent to npm's run-script command. It works with Poetry (via `poetry run task`) or standalone (via the `task` command directly). It requires Python 3.6 or newer and depends on four small runtime libraries: tomli for TOML parsing, psutil for process utilities, mslex for shell argument handling, and colorama for colored terminal output.

Use it for:

  • Define and run common development tasks (test, lint, format, build) from a single pyproject.toml without memorizing shell commands.
  • Compose multi-step workflows by chaining tasks together or using pre/post hooks to enforce task dependencies.
  • Share task definitions across team members by committing pyproject.toml to version control, ensuring consistent command execution.
  • Reduce repetition in task definitions using variables and string formatting for paths, arguments, and environment-specific settings.
  • List all available tasks with descriptions using `task --list` to help new contributors discover project workflows.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Taskipy is a task runner that lets you define and execute development tasks (like test, lint, build) from a pyproject.toml file instead of remembering shell commands.

Yes, if you want a simple, low-friction task runner for development workflows. Taskipy is stable and widely used (top 5000 PyPI packages), with no known vulnerabilities and permissive licensing. The dormant maintenance status is a minor concern for long-term support, but the package is mature and unlikely to require frequent updates. Install it if your project uses Poetry or needs a lightweight alternative to shell scripts for task management.

Install

taskipy on PyPI

pip

pip install taskipy

uv

uv add taskipy

poetry

poetry add taskipy

Installing taskipy

Before you install

Low install friction with four lightweight runtime dependencies (tomli, psutil, mslex, colorama). Maintenance is dormant—last release was 626 days ago—but the repository remains active and the package is stable enough for established workflows.

License in practice

MIT license is permissive; you can use taskipy freely in commercial and private projects with minimal restrictions.

Quickstart

pip install taskipy

# In pyproject.toml:
[tool.taskipy.tasks]
test = "python -m unittest tests/test_*.py"
lint = "pylint src"

# Then run:
task test

Your project must have a valid pyproject.toml file (PEP-518 compliant) in the project directory.

Verify before relying

  • Whether dormant maintenance (last release 626 days ago) poses a risk for future Python or dependency updates.
  • How well pre/post hooks and task composition handle complex CI/CD workflows compared to dedicated task runners.

Package facts

License MIT (permissive)
Python support supports the current Python release (<4.0,>=3.6)
Install friction low — pure-Python wheel
Runtime dependencies 4 — tomli, psutil, mslex, colorama
Maintenance dormant — 626 days since the last release
Last repo commit
First released
Downloads 1,204,658/month — #4,227 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: taskipy-1.14.1-py3-none-any.whl

Keywords: tasks, task runner, development

Intended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.6Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Software Development :: Build Tools

Tags

task runner pythonpyproject.toml tasksdevelopment workflow automationnpm run scripts for pythonshell command shortcutspython build task runnerproject task management
task-automationpoetry-compatibleworkflow-management

More Build Tools packages