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.3.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.3-cp313-cp313-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.13Windows x86-64

taskito-0.16.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

taskito-0.16.3-cp313-cp313-manylinux_2_28_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

taskito-0.16.3-cp312-cp312-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.12Windows x86-64

taskito-0.16.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

taskito-0.16.3-cp312-cp312-manylinux_2_28_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

taskito-0.16.3-cp311-cp311-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.11Windows x86-64

taskito-0.16.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

taskito-0.16.3-cp311-cp311-manylinux_2_28_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

taskito-0.16.3-cp310-cp310-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.10Windows x86-64

taskito-0.16.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

taskito-0.16.3-cp310-cp310-manylinux_2_28_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

taskito-0.16.3-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.3.tar.gz.

File metadata

  • Download URL: taskito-0.16.3.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.3.tar.gz
Algorithm Hash digest
SHA256 404c0ceef5c7795b7705c54c0d7a80db8c4036cd46334161ba157d132fd0c865
MD5 54a932e47412c6a80ffd627c01b117f1
BLAKE2b-256 996431e2278530fcef2c4aec6fc68f869e0476e395edf30fc79d4a09d298e7b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.5 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e311373987bbb8be0b637c7d9c8d4d4879ad8f2611fb6280bc6b5ab4c97c64a9
MD5 2d844022c40695fb8fe45982107804a4
BLAKE2b-256 808cf8d8c9d7b41fd08126a99b4c50ac4d175b1c7207719c70e7d89dbb12016a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 957ccb3182784e9698c1f9041cf6f7d28daf7dd7f0383199af9e5489d3f7d680
MD5 337457d9ddfd142fdeadbcabe8b46498
BLAKE2b-256 3d09c01d9f59fdf4872b00ef5b22e5ecfa1b1fb1db9d79e9bedabf129d5815e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2680376c6115b4db826f0780639e361184ebdea84d1ba6ffc5cbdd58abadcd5d
MD5 0d569129e9be3f2223f550ebecea0127
BLAKE2b-256 ba0e3afdeba85ea223e501e701f21b0a05d4a972fce72868817c2b925acd19ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.4 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.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8af080a6b899ac18a10efaee77bbcd6f50c812c82cbf4518f0067c44727aa126
MD5 e0266d5350d828ef8f8c6210a759e92f
BLAKE2b-256 08697c99071e008d2f3301ab06daf3aed393d885bc44903501a07190a72592ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e749fecaa789dd2bba1e648976410d4f7d8b9ca2375af34b2c5aa6c5b765535e
MD5 2c406461e0c87f44d2f593b7a7b2f413
BLAKE2b-256 43333539e53204a1e596fdeee34bc31217f885d78c8df03aed8caac6f913ad71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8cb34e7b4c6a88a07a1a981399958128b685b668244ed629a2291583c52f3eb
MD5 3aa342707818b91044e31e31d0d16da0
BLAKE2b-256 3976d7b0717afc53032bc871a0795de26ea810e7f9f915839838d54a1f6d2c13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d94950642192c37766fe739381da3dc4790e234885aea4f630d82208eeabb7e2
MD5 92c9a12c17361c03dde88010c115b229
BLAKE2b-256 c7edd1ac349265408a291ebb3b0bb750c760cfec9152ff57beef1beb19de1348

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.5 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df7f94f2225254614bce60797060a00b8f48a482aa47c5129048b407fa3df304
MD5 e847c4027a5ec54e7a135c09692e1586
BLAKE2b-256 170c2e72c799fecc9ef71ac117aa193353bc80db3177bfb73bd487e7b45bf135

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b4d0febdddb546714b440277fb5e6d67a35144f3c8c7bf067a2f597d86a1595
MD5 c76d196b0d7148a63407b6796ee83377
BLAKE2b-256 6417b12f1056870fb96d83af3e9b1e92779c1410ecb0549773e63163a02f1598

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f8809f3b7cf58154e36ca22efc106d4b2e831f7b24e319e9512e2363b5567bc
MD5 90408a072a45b32e974e01d1c976affa
BLAKE2b-256 70d6afcc875895fc5d9942865a89225c46ead2444164821400f913dc7de7e2f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.4 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.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd1a9dd05cddf41830152483fd7fb9c1480fa54303947913259d2d0fe9012ada
MD5 207d37ac4b935eeac80e37b8655204cc
BLAKE2b-256 afdd775879561aee35d46e032b4ac3683dacc44f32b94c695196d4cfa529f83a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7505c8565f943c9cbb30ba0b11f802849efd014855777968f6be32ceda5600c
MD5 3c09f863e16fef46e353493c3780c099
BLAKE2b-256 4c41b6c7071fca53ea01e8fe187572abd49b5a7b26ba61fbaf212275a7f315f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e528d896deaadfce46fecde87b5f4e91c5729437acb4bb763d9ad7fe7602d816
MD5 851145758fdb75f9fa772fb14e87edf7
BLAKE2b-256 2422e26b574c265801941b0cb2ea528c6f8ff537f85666b42f8fb0f712955aee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61fcf4b780fba5a169c9ed2b3a634be89755c8c6f5dc4ccc8740121688d8bff2
MD5 d48f51c3a6e98ccfa83083bc016c8415
BLAKE2b-256 6d71ff50395ccd867bad0d91f4e5f7515035e3cb54a184f2aacb8bbd8c78cb3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.5 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f53e2e0dcfdfc90d4144ac0b8fe8248196ad39c1db9dc0a3aefcb938c38aaacf
MD5 a655fca89ceceea91461ad610935ec50
BLAKE2b-256 4c777aa21062908dab263638f5181a437156ed2323639f5cb97845c38f38b673

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a222a05d8aa35775785a15efba06289481fc54e971ddc17737f976862bdf7bba
MD5 3fa8bccd120b36e27b3d8144e59aaf35
BLAKE2b-256 d997ed07bf81a16490b9d88a448b53397a33a89bbd96f48f0962ae8ae773e0da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3aab5979f83fc7620a23d9526a5e3da994429559459b600127d921f49df8fbc9
MD5 2649b48a5f5dc39cab73ce212fd0ac60
BLAKE2b-256 aca127581ca03df4453fa9b8206855b1fb9a85758085d836723c8e8411eb22d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.4 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.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6081888676e864205d483dd96ed10538be9b5cda7c136d02ec47979ff0e8d4fb
MD5 e9748c307aaf89bd6b86e343ad2d0522
BLAKE2b-256 7aef122554ad4c5f4ed645ba62a410c0734d57a0ac3b05089ad311081f41b455

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fdfbf5b0cba138e4905cd6163167115a9eb16bfaeb910ec32ba9c82291a20ec
MD5 36dc77705b940c63d8daa9ce62d850f1
BLAKE2b-256 20b100c0127542bc7b5a81d3ea0f44353424aeee8e68b09b9001047f7dfef4f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d497a9859de2783c4d8dbf88d5f5436811cde5930b1234e223324d1b7f96852a
MD5 c824333f282f2df45105dc37867acf65
BLAKE2b-256 e7acbf9c02cbae9eb7ae53a74e0875371f8431a0730c34fb14c47a8623450e0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66de08ee16bf7ce904780277b8fc2e8d8a0714b7e75a8a9ec903f6576d1b4691
MD5 aef0dccf433a05d8204bb5e904e4b01f
BLAKE2b-256 a376651d63017f4625744854b9566d2c486d12cc2b58714c0cbffae1f083e235

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.5 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ebd3fa640323fb309d2c532a55fc59d20b1403327d19061def0e2d98ab4b897f
MD5 832c1c112ecf44c2f002abe30e52e505
BLAKE2b-256 93ef3f780364f80e395be77e29c0c8f527db8ba33dbd302b6f5e299748b83e74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cf3b8d7db68e13cb7784c27449abc5340e82dcd9dffd656a300f8b2bc15da8e
MD5 e5992c99dc795b81095dab17badb72a2
BLAKE2b-256 f04e956fbd29c409fecae73bbb16f055702ddc5040aecc0044a63fa1cfd04422

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ea358c0d1635c9d85cd7fd99dfeb8d3164c2558a57216237dba9e88f41efc5b
MD5 b321457af809ac667179ed304c3ec022
BLAKE2b-256 ba1f8364e95f2693ced40a981cbdff2646899e6f443f71234a2775440b477150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.4 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.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec21485486221918d023caaa1245e3c784baec306a5a1b12cb365c4d70702003
MD5 a5c405bdc6463a71aa3248963869ebf1
BLAKE2b-256 62be8381a1ac7c01050ec190d4f919168b9ddae21705fd4d795dfa00ae77bd0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83b210502cd131913fa304d978020ab6ae814486e32ecf3cb1f098f2b642f17b
MD5 7a18acab8c17a4ccc3f17558280443f7
BLAKE2b-256 2678d8dee1d6dfd3359ab1441a92705a3cc2eff65a77ce5cfec09bf8a1e28743

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6ad272241a50148607df5e8dcd0f8c871ec6e5b77c1e930fe2fb37010952eb6
MD5 4d707da0b6955112b82f805c21401542
BLAKE2b-256 37ee52b4037091a2da1632b3b08952d3c624376443cad334fadff5a4c84b9deb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.16.3-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.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce66dac9518ffd4bf1c166117376504b5f460163173a4f19f4f102adf3e5ce05
MD5 c40be9dd43ad9247072399c19166222b
BLAKE2b-256 3b2eb2fa44d6566c0e054932af016aa76555d5a8cf32b3aefe4b2da8e9a80b3a

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