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.21.0.tar.gz (1.3 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.21.0-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

taskito-0.21.0-cp314-cp314-musllinux_1_2_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

taskito-0.21.0-cp314-cp314-musllinux_1_2_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

taskito-0.21.0-cp314-cp314-manylinux_2_28_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

taskito-0.21.0-cp314-cp314-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

taskito-0.21.0-cp314-cp314-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

taskito-0.21.0-cp314-cp314-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

taskito-0.21.0-cp313-cp313-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.13Windows x86-64

taskito-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

taskito-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

taskito-0.21.0-cp313-cp313-manylinux_2_28_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

taskito-0.21.0-cp313-cp313-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

taskito-0.21.0-cp313-cp313-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

taskito-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

taskito-0.21.0-cp312-cp312-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.12Windows x86-64

taskito-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

taskito-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

taskito-0.21.0-cp312-cp312-manylinux_2_28_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

taskito-0.21.0-cp312-cp312-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

taskito-0.21.0-cp312-cp312-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

taskito-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

taskito-0.21.0-cp311-cp311-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.11Windows x86-64

taskito-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

taskito-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

taskito-0.21.0-cp311-cp311-manylinux_2_28_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

taskito-0.21.0-cp311-cp311-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

taskito-0.21.0-cp311-cp311-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

taskito-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

taskito-0.21.0-cp310-cp310-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.10Windows x86-64

taskito-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

taskito-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl (7.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

taskito-0.21.0-cp310-cp310-manylinux_2_28_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

taskito-0.21.0-cp310-cp310-manylinux_2_28_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

taskito-0.21.0-cp310-cp310-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

taskito-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: taskito-0.21.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0.tar.gz
Algorithm Hash digest
SHA256 f97ed6b9d3c334c81919a06f23d85903e24426d999b369a64386804bf98862a8
MD5 3b3cd655c482e5842b9c7af0f449638e
BLAKE2b-256 bf53872d1949ac478cc8dd6722545760b15aec016f9381a9fc19f940b7ed1e38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 70535d51e6f781830c9744dc345401c8e7649e488acf5886a16abd1ccd3f6005
MD5 1fb372acac6ea7bac3387ad90d4e113d
BLAKE2b-256 e780e8134d8be6af893a73cfb13adf1b9e832bcf82ae3de32861c6d8c6d9dc85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16efd5866db26f0a1c27b9dd6d1b0745bb32be3f901ba69894c648b344457e20
MD5 0264d03207802a7b7badcec074285b45
BLAKE2b-256 c661fff4639451ece9ab1ba7611c760edae56fddfb5a698bc70db2fdc19ce84c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 babf73cd075acb93bfafed56ea306007d56547df7141cc6537817600f7491183
MD5 c8c9b445972651ac0dfc7d1a539ec00f
BLAKE2b-256 32581834c593e62d485c1bb91abbc815aa333435dee6122e6af5976814f16807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1b4c7fb8fcf4fb22886588754aacdb1909e0eabc9a40b04c088c9025695f2d2
MD5 c59b30a0ed051a753aec8df171be1580
BLAKE2b-256 343821793d7e743fd195396fdfe053719c8ef2c6c2c00c8baa81c88380f5a352

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1f3dcb14b1783a165ecc01be097bb41e99a9a8992e9028921f765cf0af5106a
MD5 a82b88657b9d0757670f05298e5d1b5d
BLAKE2b-256 a9eb3caa31fae94d58e20759f6a4a1dfa3a9380ddfceb1e970c9a28f33abf1e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cccc714bff353d90bee827652ad9c57bc4caccc3acd506a03bfcf021f3565c3f
MD5 862288530cdc7fb61004e3c037bfc178
BLAKE2b-256 8ab191b5b169ff6611e14f63b57c796cb5b8a21b7f22e666ac95f721afcdb384

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45119c3735894365b6298edd13aae65fca33a55ed0098cfb80b868dd6a697943
MD5 58b0c8165c6bddc3121bcd0d668a6d86
BLAKE2b-256 a194eb7ad09c5f7bf78649a2fd8ae57cd215c70b1798e318d0e5afb268f0022e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c2492c475e9a824ddc31405e67237d672c32384bd44865814bbf0387582149fc
MD5 534c28ce50dc64fbdd13244d397f7228
BLAKE2b-256 30957591b87d9d6441a0daf0118fbcd58417f53127c54687499efd19efbb70f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04c3e2b889d4cc15110ca2742c7addaa65924f71e047ad857d3bf2d8c4958f08
MD5 2e826c32bf04151c02eba0a3be0083dd
BLAKE2b-256 6ca1ec05c8be47f8c16546a8e06c37b5923635cc00329239ac357ef1a0511837

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e975c3c6de2d98acdc2743d7c9918b3867955a469041212c25d44e13435b53d
MD5 2ee16b8ffaf461807857ec368a0bd35c
BLAKE2b-256 7c0bfb2446cc2b449f4c58517389ae32b64b415012f4af7f2dfe5cef1d788f7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bccea4796b1b7b1c1c78dae4fd89a5ebc89cd2d838e2d75d89c874ce46dc3dfb
MD5 8b24f1efd3ad188c3f9c4a751429dce4
BLAKE2b-256 0cfe7b6c0ca0267a5b219c214aaf8ebd19d3d13630d16d03663bc075edfb38c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbeb0fc1df42d388eeefe2278523fc9d48adb627d12a32bcf5578a6bdf0d3cfb
MD5 3b2930e5cf7092a641644d5f308ae49e
BLAKE2b-256 1d349dc097aeb33bef471cf6b7593d9ff270203a77a87530a8b568494cae5891

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ca938af9097d6588f9f735a4644192fc37709fd02fe60bed36a3a81acea63e8
MD5 673f151781ef16b97ef1495e33a78dc8
BLAKE2b-256 fc219574bb6ce3fdb7ce003278957c6de2f97133972f401ae8db78e967dd546d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fce5357122a2fdf4babf063fe8f9774fb5ea7717bce19ecf2ecb163d9ca0e4d3
MD5 cefd079b04e3ad0d7621f96365519e47
BLAKE2b-256 a32b0c07bc53c26348f36b399674afcfe943f329efb40965d1f8f4388147d744

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98ba6afca291a80a03748430147342bc28cc2c1766634aec5b0909656ceb4f7c
MD5 8d7f536b1d169e3b57eda15e4cc4db73
BLAKE2b-256 6171c73e325a486506edca15ff944bedea2a9ea683dd314129ceabe5f7c6a553

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f41259cc47c1c92eedf9c40e8a53193ea2fafb64bdc879962a262e6d7f3bb0a3
MD5 578f10eb056eb496a7649e469a02bda1
BLAKE2b-256 be433f44c22aa2004c9440015d7ccfa95597cc375c0a65025d08936128533b9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3af453055563ba1be174af6fba9e9dd2bd2a70c2bbc27e83eef6e7aedd141bc
MD5 a68ec5380a1a08e8bd3c444e5a7c66c9
BLAKE2b-256 a7720e312481d81e97f827d50df7c75af77bfa1f81a4d45b2a6b26755117e4c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 202ba2dd10632820b722eb11895052f957f85dd0fd198ebce89797e0cad354b4
MD5 e768e11c22ff6c7f55a57a619a35a5fe
BLAKE2b-256 64dbda7f021ddf7f6c34a1b8944ddece1fd6eb7a522dea48c521b3c22a8e1379

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 390897670469cd4506f44f3608827f7747bb76cf128219777312489520ff5510
MD5 8a63bdaec71dee82802599797e10fa63
BLAKE2b-256 5d3bd929c9c4daeb38cd068dce738657bafd84b52891771dd0368898d0ff8ea5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b3cc2a081d462cbc94a250bb8cc7006c82f747de725ec6411ae9e3c08570c34
MD5 b132684196867424394b7bfe874dfd1a
BLAKE2b-256 4f4d8450c5f07d2cd146531d6a1e81359e05c6896bfb3c418145bf8492c62310

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78d69478bdc248345618e11b7474ad8857c259149834be83ecfc014507b8a307
MD5 4ccadca90b5bb9007c81afd10bb4ec76
BLAKE2b-256 1af09bc3f3da07b1d5f746056cd7c720632ae837f2f2f6c2b4e4d972fb5e02fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b59d180556de958745dfca44441d6c365b1e8615f7c221d2b589a3388fe974d6
MD5 c1eb07319ae02cb3e662ca7a1da12086
BLAKE2b-256 b529bd5215a95d80e396a5c14865b0070de23d7311d4ca7ca5380f95e992dbf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ccf9961b0f187bc5791fd1b42f4d8a628d92d407932b169f053c3a31f97de30
MD5 58f45284a60ea004cb5d918eb58fab92
BLAKE2b-256 7d0be373a993949fafa9a632f73dcbfc69ae81093f877ce7d9f29fcd12ef6e32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c3b7481787d10ccd4ca87478da9392ca8b8eff74b0941079d0abcba0f8a30b5
MD5 fa1eb8fdcca8a408d1a8dfcb891d3b93
BLAKE2b-256 18bbc4b563306f5a6b894483c3064f0495f6659589c1acad28f5af52111650a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70f2cbd644610c07588d1b0001f6484a4be9e28f4391e1a723a843c056b23e46
MD5 b6e198b0852e34f0353dd19798a80ba6
BLAKE2b-256 f1e6fbc26ecf7513e73d16d7076819051afa68338c99c54be40577a18b4f4bc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19f2fd6d6dd582d59df55854f529961fba05100d8c9f02da47ae8c9ba3612116
MD5 d8f6ce63b520e9eebeb584788d99606e
BLAKE2b-256 ab61a43e86ed7da4f7e1febdee95f6b9cd827c8bc80f0c1a5ec79a3f024b9feb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b88a7d070d84bc335883e8c790b782e2bff30b1be6ec18d91d2a8ba765248c6
MD5 9ebdde9322fb949c3205bdca438a266d
BLAKE2b-256 52d3807b07093a74414d1bc1237ac54adfc18138c52cfc613aab261c429e262b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 feef4cdfd965282ed3655b18d0a4d89e97b4d941a5a7addd3e5412ec18dc2650
MD5 9171a606e83d44039c658fc0383b43d3
BLAKE2b-256 2d9b38e038dabba230cdd738899051fe6fc0e0072219b6837562d33e049b57d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 88a6192b370772199f837fb8a1994c54f37414690218e62b5eb8c8652dc0428e
MD5 2bbfcd2b12dd50eb00f0d8b819a565aa
BLAKE2b-256 e0bd2d2b62abb8a26e0236c1bf2a404450078c03962bb439a234ac083be3b719

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9db8711e113bff179c93914bce02fd6ea9127dbd34e9879522eef20ec60697ce
MD5 98cd18511e6aa82e9856b89841057f08
BLAKE2b-256 29457d38de80cf4e5a502224e1a2bac07435bd1821cff527ab9b49dc03d25a02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44f75288cbdc4ff8b09c2d6acc5189e660e80c46f477ae814bdbf400b8cce995
MD5 1a721590187a6f5e03e032ed839316da
BLAKE2b-256 4ec61c41d7ccf8d8cdf90f5a1d6b68b430d84bef428504f2ca407b722c7ee21c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c817623af307948a46ef16f18f80e7daf3818acc31170abf2633b5c1e988df4
MD5 984cd6aac4c9761ec7c9ab034ed4975f
BLAKE2b-256 cf8ae530a17cfc56c3818708b0424c7f4d9a4a076c1d3e4453b17e913d718a21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33f1c596819b31e14f854e5dc24089bf512406777bf3d755c30dec059d25eaa2
MD5 1ce03f4863a3ffbd389b3acde37f6d52
BLAKE2b-256 a5f35c70d84a6da600cc2ef87a17406d61e4a2e1842ba3a740d23e8434330ec8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0d9cdcb298f6a1e785ed36e4e80d02b59ee21c037da22e40a6f5fc91dec43cb
MD5 d117992dce9fd709e05a4e27484622c9
BLAKE2b-256 bef93dcbca4633c86b455d2106cd6b8ecd5c31f59b6714b5ddad5cc3ed0f3716

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 6.9 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.21.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82f07d86e4f4926e2e3f258ca3052a522410984a916ec676cd4655e395a85c6a
MD5 c0d31d967d5922528c3784c7f9668e1a
BLAKE2b-256 fab75d230c0897d091f4713df3e5b8ed4de8d893ac49ef20cd253cc36d6a8dd5

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