Skip to main content

Rust-powered task queue for Python. No broker required.

Project description

taskito

A Rust-powered task queue for Python. No broker required — just SQLite or Postgres.

PyPI version Python versions License

pip install taskito                # SQLite (default)
pip install taskito[postgres]      # with Postgres backend

Quickstart

1. Define tasks in tasks.py:

from taskito import Queue

queue = Queue(db_path="tasks.db")

@queue.task()
def add(a: int, b: int) -> int:
    return a + b

2. Start a worker:

taskito worker --app tasks:queue

3. Enqueue jobs:

from tasks import add

job = add.delay(2, 3)
print(job.result(timeout=10))  # 5

Why taskito?

Most Python task queues need a separate broker (Redis, RabbitMQ) even for single-machine workloads. taskito embeds storage, scheduling, and worker management into one pip install with no external services. An optional Postgres backend adds multi-machine workers with the same API.

The engine runs in Rust — a Tokio async scheduler, an OS-thread worker pool, and Diesel over SQLite in WAL mode. The GIL is held only during task execution; run --pool prefork for true parallelism on CPU-bound work.

Features

Grouped by what you're trying to do — each section has a one-line sample and a link to its deep-dive guide. New here? Start with Capabilities at a glance.

Reliability

Retries with exponential backoff, per-exception retry rules, soft timeouts, a dead-letter queue with replay, circuit breakers, and idempotent enqueue.

@queue.task(max_retries=5, retry_backoff=2.0, retry_on=[TimeoutError])
def fetch_url(url: str) -> str: ...

→ Reliability guide

Workflows

Compose tasks with chain, fan out with group, fan in with chord — plus task dependency graphs with cascade cancel.

chain(fetch.s(url), parse.s(), store.s()).apply()

→ Workflows guide

Concurrency

A thread pool by default (ideal for I/O-bound tasks); switch to a prefork pool of child processes for true CPU parallelism with no GIL contention.

taskito worker --pool prefork --app tasks:queue   # CPU-bound: real parallelism

→ Execution & prefork guide

Scheduling

Priorities, rate limiting, periodic (cron) tasks, delayed execution, and job expiration.

@queue.task(priority=9, rate_limit="100/m")
def notify(user_id: int) -> None: ...

→ Scheduling guide

Observability

A built-in web dashboard, an events system, HMAC-signed webhooks, Prometheus and OpenTelemetry exporters, structured logging, and worker heartbeats.

taskito dashboard --app tasks:queue   # Flower-style monitoring UI

→ Dashboard & monitoring guide

Extensibility

Pluggable serializers, per-task middleware, a fully async API, and Postgres or Redis backends for multi-machine workers.

@queue.task(middleware=[MyMiddleware()])   # per-task hooks
def handle(payload: dict) -> None: ...

→ Extensibility guide

Examples

from taskito import chain, group, chord

# Sequential pipeline — each step receives the previous result
chain(fetch.s(url), parse.s(), store.s()).apply()

# Parallel fan-out, then a callback once all complete
chord([download.s(u) for u in urls], merge.s()).apply()
@queue.task(max_retries=5, retry_backoff=2.0, rate_limit="100/m")
def fetch_url(url: str) -> str:
    return requests.get(url).text

More examples — dependencies, progress tracking, middleware, FastAPI — in the docs.

Integrations

Extra Install What you get
Flask pip install taskito[flask] Taskito(app) extension, flask taskito worker CLI
FastAPI pip install taskito[fastapi] TaskitoRouter for instant REST API over the queue
Django pip install taskito[django] Admin integration, management commands
OpenTelemetry pip install taskito[otel] Distributed tracing with span-per-task
Prometheus pip install taskito[prometheus] PrometheusMiddleware, queue depth gauges, /metrics server
Sentry pip install taskito[sentry] SentryMiddleware with auto error capture and task tags
Postgres pip install taskito[postgres] Multi-machine workers via PostgreSQL backend
Redis pip install taskito[redis] Redis storage backend

Testing

Built-in test mode — no worker needed:

def test_add():
    with queue.test_mode() as results:
        add.delay(2, 3)
        assert results[0].return_value == 5

Documentation

Read the docs → — guides, API reference, and architecture. Coming from Celery? See the Migration Guide.

Comparison

Feature taskito Celery RQ Dramatiq Huey
Broker required No Yes Yes Yes Yes
Core language Rust + Python Python Python Python Python
Priority queues Yes Yes No No Yes
Rate limiting Yes Yes No Yes No
Dead letter queue Yes No Yes No No
Task dependencies Yes No No No No
Workflows (chain/group/chord) Yes Yes No Yes No
Built-in dashboard Yes No No No No
FastAPI integration Yes No No No No
Cancel running tasks Yes Yes No No No
CPU parallelism (prefork pool) Yes Yes Yes Yes Yes
Postgres backend Yes Yes No No No
Setup pip install Broker + backend Redis Broker Redis

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

taskito-0.16.1.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

taskito-0.16.1-cp313-cp313-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.13Windows x86-64

taskito-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

taskito-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

taskito-0.16.1-cp313-cp313-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

taskito-0.16.1-cp313-cp313-manylinux_2_28_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

taskito-0.16.1-cp313-cp313-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

taskito-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

taskito-0.16.1-cp312-cp312-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.12Windows x86-64

taskito-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

taskito-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

taskito-0.16.1-cp312-cp312-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

taskito-0.16.1-cp312-cp312-manylinux_2_28_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

taskito-0.16.1-cp312-cp312-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

taskito-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

taskito-0.16.1-cp311-cp311-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.11Windows x86-64

taskito-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

taskito-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

taskito-0.16.1-cp311-cp311-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

taskito-0.16.1-cp311-cp311-manylinux_2_28_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

taskito-0.16.1-cp311-cp311-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

taskito-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

taskito-0.16.1-cp310-cp310-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.10Windows x86-64

taskito-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

taskito-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

taskito-0.16.1-cp310-cp310-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

taskito-0.16.1-cp310-cp310-manylinux_2_28_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

taskito-0.16.1-cp310-cp310-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

taskito-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file taskito-0.16.1.tar.gz.

File metadata

  • Download URL: taskito-0.16.1.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1.tar.gz
Algorithm Hash digest
SHA256 8129741266e9cb0cbc96b84c07c6cb3efaa81247214c407c86d63bc2541de62e
MD5 9ae0ecf9d3fd5ac63b204b0fbab09ec3
BLAKE2b-256 b214c18aed44447dedad49e95b20801297ae1b648b1694743219d29b7061a3a7

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 245e3827550e5e4c81a7e8884618380cf711a60ea785c0689fe8e00e2000a8d2
MD5 e4825d7da4260f5450bc6ab13ed7206a
BLAKE2b-256 40e6372de2a7cbe9b315c52bb7c74b222e6f48cce8ddb24ee67aea0fc9c5f68b

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e8cfa39808d06874d9af53cfe425344128c8fb02cba7feb145fe43d809632fd
MD5 ecba8f1c873b0248580171f6dbc57e0b
BLAKE2b-256 dbf7b1620ce4db04bee26c35caf64501b2badc92eb3a5e8b9a6fb3e0614f0117

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1558632e7e211a92b9668c1fba83a5f6fbbc34aa6aab78b1a7264af818a7dfa3
MD5 c54def74298d387b1d7fb07a93ac7999
BLAKE2b-256 0993007eaa38bad2d4a932aac68f1e4b0d17075fad2b73b4b90ecb5cc09e8111

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51ed6660671590e31a0ffabbb5922ba8b8a8850ecac7c1f8c88f1549f7fd0869
MD5 37224abf1a45e846545c90cbd18c1153
BLAKE2b-256 e4dd03ad404787b75b01b03feeaf39f164746efd67ba4edfa0990ef22d137369

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f6df542b359954fe59209e1680449ea1820278931cb953a5ee710124905089a
MD5 9e56eb463b43f6f6379079640afbaf47
BLAKE2b-256 7538f50fd5c4be93c36da05330edf92c28747079a30a8a9c5098a54c34b35ddd

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f72c1f1af83a69fee7456ea3e4944196e7f1b3f43613a4c8ec88275bd8ea8f2a
MD5 a1ca4ee6669b9541c6f6afb80d8369fa
BLAKE2b-256 79fbb71759b046021f29a7c359d19906c8f3c254fb50f0dd1476a204f36979cb

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 604f23c00c8246c154449cf3f2efe18e91f40fbef0b4e9a83047928118882e0f
MD5 724ad8618a1adf2df82786607a391b6c
BLAKE2b-256 9dd052ab60c11669731455585894c0f218a0527fb170a42c3e04108742e2e2e6

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39e238eb020b9e83658e9fd01ba82372e514a35ef3e3242395d2e3f4a59d6408
MD5 fafecc9a3fd3b06f4d46ae9d52da658d
BLAKE2b-256 b9f487059beff6170ce83f20f8389b62f1c7e84e3c37a07d9b44d9d6df0c350c

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 372d64d2573fb37e9b100084096b9048a3e38f68dffdb7142f857188fd00c516
MD5 1d496ffb5b16271840bbb9242ba700a0
BLAKE2b-256 06c554345f9c39bf7bcb6fdd242f9e6ae9f30958c1c0b47820ce7ff3cffe3e92

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3404a4565cfd3a7cfb91c4a213106a77c9077b2411bed2cb008316c255326aac
MD5 df6e5807cea1575ead0d6a8dcf5d545c
BLAKE2b-256 b46671ba2fb2c728e9656efd12da85eef2216194637ef9a2b8408a5c514fb79c

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc936d90d378f273bdf8aa60d5e90421543f7fd55c0e95dd6626faff3b450645
MD5 8eb364c6056dd96d2a842e79ddcb6bac
BLAKE2b-256 3542a00cbf719df6fcfbefbe77bc0cc7772008867be4706ecbeaa718ef03a801

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5cede7fe621c115a026af495fb6f06edb2281139ec5db2f836ed9607d58e3d9
MD5 5a3c887b34f4a0cdc4c12b93a1e3536a
BLAKE2b-256 9df2b3f434316182753395a4215fe7fba8a1543fb983a0d7592c161b3417b866

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e51e801c69aebe70abb23f3ebd590dba3cbff5b00cbc91dffdf3fb099f5b28b2
MD5 7087c64bef937d8e6a008264c91ba339
BLAKE2b-256 a629bf21019188c295b8bd7845844888e974cbcea3ad0fff1fe3e4ce30ffc0d4

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a99fa4ba6bcd9713650780ef9b96f069e2b796149390fc4a51928591fe3f0dad
MD5 b9fba01fb84824aab6cf123d443cefc6
BLAKE2b-256 f42c00dab7275259e8863c3f9de707ad8d838062110cf33ac4daf326187358f1

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b990dc3f701be69d3b9b7f07272227bc5121b41c67e92b8da7f244a370455528
MD5 3189fa399db2caf26f8f5e5b06311a80
BLAKE2b-256 6a02259b411bc9787910df77dd24c03655b3c6fd211fc3b71a67a0043a83508c

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31118d506de6903cf27df4e4f07bd7f9d0da29e91257d21d7e43452a8159769b
MD5 e91e862c63e18c363cbd22615e866a46
BLAKE2b-256 492e231fda1abea603d7d7b19e3964504bc7f8d647f0a53dcdafcfc7afda6403

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b9e4c49b211ddd6b61d8814930ea2331022fc791319a51e180b127cb9cdd1b2
MD5 2dd70591badf95f4661a6111a06e12bb
BLAKE2b-256 3b4afffa8dc5b5b8c8c0f41510603dff73239e3d1abe82d3db57c24981798eca

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4305d1a8a44835242b6372b4b65efe56a618e88332c0b6c664532037ef82c58
MD5 036b4bb8ef42370390577b06703683a1
BLAKE2b-256 9adb7dcc991ad3e57783527444f2900910844d26c2a8effcb0345eb76a71f40c

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6874b425e0b73d8a43ee7197e47b5283e1449d0d0a2f5e89e029435e0efff116
MD5 8e31611f2d1a51977e1f1ce973a0066d
BLAKE2b-256 08579b82b8eca0401a582879068d495c24338e87d8becb89ac5f0ca065ee42ef

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 469f19e276bf77340779d48f16e42cca58170314054276f6e9fcc92fddd2fdc5
MD5 c5d4ccfecc2918a66fee737a8ef6cfc5
BLAKE2b-256 caf68f817e5dbe88791e3ed504b19d988f29b831a1a58a03ce35ac622e497a40

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99029cf71c7b8cb2603184c4e7b4c356cd3e94061ed49fded4af4421dea00f1c
MD5 bfc6e3b396ce5b4e0ab351c27d4c5a03
BLAKE2b-256 690ef92552002f6c61377ea538d28af5d54346715d737f64c4b2e5bfd28dc3f0

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9365970a82aa44db8eacc21888608ff3afad86f8dd20a3672b15444a745ef5aa
MD5 cb6eee9de8269b42519d754c07e29b8b
BLAKE2b-256 c4922282daaeae83cf1ab6e5c9389a2b94cdd552b9ab3fc90367d1a13164c5b6

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c68d610c63254a90ef87545bf317eb729b3f1e084bfbc30c511792c17162fc3e
MD5 c4f788a38173028b836a9c840451ab40
BLAKE2b-256 c32bd663a4630566184cacddf84ce61fac028b4aa5fe6c8318964a1d5a5c6fbb

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abe4047e412973ed38e8876492db48fd2aa022a48368520f4d891a2bd4ed3140
MD5 b3f6b818d86fdb717c2a520a59f15728
BLAKE2b-256 de0797f3a7a18683fd91c8c2972634197bd7ba6bd781b7ab6469fc326ac93c9e

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34a33f4250952f1a976c9276880f1a7085ea221a3d555d533bdc022aaff5e471
MD5 1ce6c1f5eb2904e7d500a99a7e36e136
BLAKE2b-256 0bb1d16a101d41491524b5c849c2525aef3189ca6ccd26c36e312ac73ef72c43

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5732eb3289f53c35a4904fd380a12725a7c2b57b5c8815bfae560e88705fe8ec
MD5 fad20131e2f7bb3a78fa8a3b57aa1149
BLAKE2b-256 09a174ad00bd10d79c351dd86bcc573dd337650b3b5a03e736baa4da32b68d66

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fbf999d58587f1f03001cfdc28916a131756b62c0f3b45c22735df6058b6158
MD5 b9b63f71869c25798e17b8fd18049bb7
BLAKE2b-256 eb2b4925af558a2af45799442599c000c75d16a293a859feca074b7b10eb222c

See more details on using hashes here.

File details

Details for the file taskito-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: taskito-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for taskito-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 372b8bdd772c252249d015bba549f17ae34b030fb795bb928dd4895ea171f58a
MD5 71283a460cf8125067c565017f7f35d2
BLAKE2b-256 bb57e992c884ea0129c4968f99e9fed99b79b0f15ca5e6f4f90e4c45d45a4ab6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page