Skip to main content

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

Project description

taskito (Python)

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

PyPI version Python versions License

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

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. Part of the taskito project (Rust core + native SDKs for Python and Node).

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

Features

Each section links to its deep-dive guide. New here? Start with Capabilities at a glance.

  • Reliability — retries with backoff, per-exception retry rules, soft timeouts, a dead-letter queue with replay, circuit breakers, idempotent enqueue. → guide
  • Workflows — compose with chain, fan out with group, fan in with chord, plus dependency graphs with cascade cancel. → guide
  • Concurrency — thread pool by default (I/O-bound); switch to --pool prefork for true CPU parallelism with no GIL contention. → guide
  • Scheduling — priorities, rate limiting, periodic (cron) tasks, delayed execution, job expiration. → guide
  • Observability — built-in web dashboard, events, HMAC-signed webhooks, Prometheus + OpenTelemetry exporters, worker heartbeats. → guide
  • Extensibility — pluggable serializers, per-task middleware, a fully async API, Postgres/Redis backends. → guide
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()

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. For a project overview and the other SDKs, see the main repository.

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.18.0.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.18.0-cp314-cp314-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.14Windows x86-64

taskito-0.18.0-cp314-cp314-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

taskito-0.18.0-cp314-cp314-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

taskito-0.18.0-cp314-cp314-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

taskito-0.18.0-cp314-cp314-manylinux_2_28_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

taskito-0.18.0-cp314-cp314-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

taskito-0.18.0-cp314-cp314-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

taskito-0.18.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

taskito-0.18.0-cp313-cp313-manylinux_2_28_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

taskito-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

taskito-0.18.0-cp312-cp312-manylinux_2_28_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

taskito-0.18.0-cp311-cp311-manylinux_2_28_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

taskito-0.18.0-cp310-cp310-manylinux_2_28_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

taskito-0.18.0-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.18.0.tar.gz.

File metadata

  • Download URL: taskito-0.18.0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0.tar.gz
Algorithm Hash digest
SHA256 449ab9f097b79028708cd82397cca1d9360d875fe11dd6600b12d539806afe1e
MD5 343fb15c00d782fe492dc1b09b76114c
BLAKE2b-256 0db0d97c09257abfe1e0d88c1149540698a60cbd70fa6831591f15b6bf3410cf

See more details on using hashes here.

File details

Details for the file taskito-0.18.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: taskito-0.18.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 08f414ef3465376562ced706df7b0f99d5b8eea269049ac7b0bc16141d87524f
MD5 1e68a7bc0c2f9de00abffd26b0235da1
BLAKE2b-256 19ddfc9feeb4e1ea137212072f50218fadd726d7de91960ceb36f2bca7691b8e

See more details on using hashes here.

File details

Details for the file taskito-0.18.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: taskito-0.18.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70453e5ab567da92dfdd96507ce0f8d0694dc77395d4ee57c583d944934caaee
MD5 7f35db34594ada5905deb995712a1e69
BLAKE2b-256 1007a5a76155ca1d3b6f9f8171e81a1eb307db65b8bf31949f45d7abc2c7f0b5

See more details on using hashes here.

File details

Details for the file taskito-0.18.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: taskito-0.18.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c7401c3314bc3e477d3cb7c221d66bd2db6a74025eb887766b6252e20497d71
MD5 1950c208fabc8cb81eb06823db08379d
BLAKE2b-256 c84e8a681fd6ed5fec406f8c40722cef6df47f91ce91fb544f16af58b930b5fc

See more details on using hashes here.

File details

Details for the file taskito-0.18.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: taskito-0.18.0-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f141a42728d055a4fc25f18f45f228cfe91fbc228c3d759e3a01a1d53d26f301
MD5 384bd31bd3e52ef37ee270cf8e10f80c
BLAKE2b-256 9c65d99786b562af79c19a878d779edc6e74d35f91a6d5e0096b37b240d55408

See more details on using hashes here.

File details

Details for the file taskito-0.18.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: taskito-0.18.0-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c44f6910af62e51fc6e983e3444b23ba232774017d144529970a88f6d31bd72f
MD5 5c84363cf96a79e9cf79f508ba6f63e4
BLAKE2b-256 db37fbcc125782d7246d055f01e7d0a6941ee4ad4c90a530c15d2fe15c89d691

See more details on using hashes here.

File details

Details for the file taskito-0.18.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: taskito-0.18.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40d95e242aaee43ca511f58064335f7c3cffd2dd8ce7846a993837f61883e3be
MD5 2179bc3fd88ae84ea868c83e84e4cb52
BLAKE2b-256 a316a370b194292c6e69a3db4c8bf8db6ca412d31f80eacdb592ef4c95e04fa6

See more details on using hashes here.

File details

Details for the file taskito-0.18.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: taskito-0.18.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.7 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd9483d3a206e18cc46ba1bc4f008d70b1d6ff203e2955cb43bdcb786b309d37
MD5 df1e7e330305a0d8690ea95edf17e4b9
BLAKE2b-256 81abaf86092dc2a95aa50a30467a9b5a759911fc538322b28ebaa18dab63c2d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc10784eb117e2eb3da315c3098d4cfa6b77ab64ac65a8289ae3ef942c8004c4
MD5 5a7432eac68fff4f6b3ef6fc934e6f1b
BLAKE2b-256 957e3b9186f07d440474edccc61be2b2f8eea3ccb39fe2c0445baa284eac1f8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc0a50dfa4141a35de97f3b0bab92d41a1d165715091c21b88f10ee6f5b252f9
MD5 93f7776c6b8e34d3af2a82a7481c1d34
BLAKE2b-256 2a692e9f2f925eba26326f15ca3ef2638678699de4e7c6f3cdd2bf01fe01c1b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc16c2756464edf07c6e96af7699d501e93290a29fb312836c0bc503c37362ec
MD5 83333c26c8154ac38ad4ccc4eca610ce
BLAKE2b-256 664164e3f2d16284727a50291d74bb16a36b763b44f9f3036b3730ccd20ea891

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e275d3fc0b34af5a8dced5af2658e9c1dae4f20ac808085bc455efacefe16c70
MD5 76c138f521bf122abefad56a1e39d223
BLAKE2b-256 4e0f3c3fa841deb83a622932688e68b0d7d31b49480dc54efce26bdad3ab12d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd43734897bfbca27eecd3de7be501d9e9f745f67d207ebf72a86be907ffee5c
MD5 1e3a67e57f60b10247a5dca696a9cd60
BLAKE2b-256 9318055cb213e915a9bb616a451d34f87467fe202c53f172a98ec7de3ff0e024

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 655c9bbe15c3f1e5824df638fcd52c444bf3592fe1ecf308a82c40541898764c
MD5 49fbda30d81137a8c2a6b570966f039e
BLAKE2b-256 44565dd7db41e6e500df993f04454cb7a1055975360fbec285f623a564c666f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec267698585775fee89ccd2b9798fbb34442ef17ef61e55d58c330b5ea184248
MD5 7ab64b4c6a8697eda1ac970d54a049f6
BLAKE2b-256 f58eed14af10c5804146fad49678e57551d9c9a4606fdee12a4ba3d563b504fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c84a31cc94dfeb42e6e4d7e01bbd449803ce343cdfb6d3c91fdd05d302809dfd
MD5 e588dc4ce7d306ba967f526d43d1a9c4
BLAKE2b-256 52b17929076310cf15a2a9e8b6a490f5c02f6dce93a9ddf5415fde1f4a96116d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2e7c60d88e7b274afec66bb1e68bd71ec357a6b5b4f163ce2882993d1edfb06
MD5 2780f2c37e1aba77e2cff0fbe3ef47c7
BLAKE2b-256 1abdf706caa70900b9044268176ec00a37c29fc56bf5e3fd07cc6c1d2b656dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d0c411eb7235e9ca6b04c055a166b564b8d08369d6e0cf0446ea9f558dfa93a
MD5 8d3e19114275cc91edf35afde5c72791
BLAKE2b-256 8517c17973487871f9649adb9f22e35d364b7a3c7774d2f13503e3a168de6bc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0302a701a95dfc5cb5cbf94882b83220ff633f151b6cdd7949783c48a1d4f6b1
MD5 28b21bebf2273346d78cd213cfe8b91b
BLAKE2b-256 2629fa669dfc739b71e691ec441ddcd82b51971e2fcb3ea165f3b7edb5a2a845

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f64a0e57a368568a4e3cda9c3e3336154921307134de9a419176bc219dd577b3
MD5 c3a066d682cb63eb4ada6ce7f2e16064
BLAKE2b-256 3aa99cc22cff1e1776819fa81074fac8546528ea6279c6d166de1738ee41ca2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 382d98c075049c465d35cadd56157409798006caac911e10da3e87535542e1c8
MD5 26712f2769d5352d53863cb45428e226
BLAKE2b-256 4e6734e15059e9acecc4ba27739ef94777d1eeb3e45f40f517b9b8a4c85d530a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9b1a1d6996ac0cb8070fa73ccb45661c3ee4803245b6ebd201730e87e05ff83
MD5 e257d9542203ac14181c38fe437076ca
BLAKE2b-256 f14a5605299f189af65405880c07526b41fa6ea71d80b0150d97c0fb9cd06b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1a98a2815368e4386b420a05d010953828975e8ab244e87a82a0f14f657da06
MD5 59489958d38f258c4357b8ac76a1b3dd
BLAKE2b-256 b33c0507365adc25b8ae833cee5289b41554fa428d4ebf07a0e50513e0811a61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 979a1f1ec631ed810dfb457cbf1e888847616dbf89a6f075b3caeb3a2372da99
MD5 163648592a6faac9b1131745e97864ac
BLAKE2b-256 e5532d1ce519c4f73acabff09f741371567283d3fde13a7e97e34dba8c71951c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de411f81fffd22c126975fbcbd1680fb7216ee6427f8f54e5850a2b6b884a63a
MD5 deb9f2fa2730738167d26621f14b7bba
BLAKE2b-256 dffebb8006b7af6719fa41a7325eaf5c866c455e9a159cb4639317dd9614a64e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b860601ad3d37031e5a6d623bfd15f49bded829aea108021219fde3a2ae4dbe
MD5 5a8615584ac9253314871a47bdf442c4
BLAKE2b-256 bbe11d3037111c0822bfeeb8a42090790bd541f9cbbdc6d9429756cf7cd4b354

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcdc6893586b928e61af322bf5f7bddcb4bd027ddf1f4c0eaf2611687c5b823e
MD5 2295b21f199e50afd43921a0c0916106
BLAKE2b-256 1018e7ff629c2c5a3dca5647ebf0402f4a09af20a02e84f2a49572845ae02a21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d6d6de0e8021a11491167251efd1ff7f56c8319e04e5d85c0b10eeaa04deb70
MD5 bc9b4fca74c2d803891ac79e5220b875
BLAKE2b-256 7603c0eebf2f89b232af1e8da9e8a4e52a701b7a5972d4dd3adb05d9a645ff75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e393c497c6115c83b9147cc19cccfba25db094e36d6274e9f9926726e5812696
MD5 68cc5ee74f26a0197b3ce3b9e6f9aee3
BLAKE2b-256 fc0bca7a222e270ba93f52e6f6c72f9bb48d42fba8deec938f9b7a6d971c34d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bb80b9d4e781d5041f07006453a845987e0b48520f18716ce63ae19d6935fc23
MD5 e0bad0a23980924f6263cdaa2f7bf41b
BLAKE2b-256 08455ae9dde4ec50a9fdb13419e3481f7429a3d4189b91cd85e674831dafd3e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23361fb2777c5206d2a5929a11ed0e2643bb1deca48f492728d752fb80a8f451
MD5 f0ae53f81c87776bd666eadbeb6c7f39
BLAKE2b-256 2b094d66f32caf09122429572dff8b13aaf79deac7309e2f4853fc2b3b073c05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 532bfbe9d6a59ce8e2841235dc0e80eff084a809735a69b606bcab40712a6d5b
MD5 5a9c682d4bb5ead45f379715dba0b2ca
BLAKE2b-256 ef5c79f599d026046a153309e3971b8e74679b3f3053f7fd1726142015e19b38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 193186a395dd75b4c59419e7c9fdfa350e34bbea230b3ea0e61009c62dbc3c9f
MD5 3d534714075679ad4997895ebfd0ea70
BLAKE2b-256 377ad0d41e6cc1ff215f68aaee8de5429787f725e6a7035547c90016cedd87da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1051db64a7a39e449ab6070c1e6ccdec3c1e37374ccc3a69ac4e06bc463d800
MD5 98bede4a2f6cbe47d03e45d896ef2d4c
BLAKE2b-256 ff8d49c208b9f927e8c38ba795ba13c1c742155cd68ad4dc69700071dd220e78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96185d15bb09d0bb99d400dd130ff9810659486d4f0c6204d17d8d24bacc011c
MD5 c161e3e450ad6a3a55a8720580b8e7d6
BLAKE2b-256 9f3ec6bbbdf62d3362f7808bbfb945ed59de32d98585dc9e304561bbe2f40fd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.18.0-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.25 {"installer":{"name":"uv","version":"0.11.25","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.18.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8e694790aaf0cceca45422cafea1d9c18d724d1ded998369c932ae85ac5fba5
MD5 a57fe089f277f4262c20acefbb316a20
BLAKE2b-256 a258c843b987df852870989d02dbbb67955a78e7fa0f75af85f657d0b49c3c81

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