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.20.0.tar.gz (1.2 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.20.0-cp314-cp314-win_amd64.whl (7.1 MB view details)

Uploaded CPython 3.14Windows x86-64

taskito-0.20.0-cp314-cp314-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

taskito-0.20.0-cp314-cp314-musllinux_1_2_aarch64.whl (7.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

taskito-0.20.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.20.0-cp314-cp314-manylinux_2_28_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

taskito-0.20.0-cp314-cp314-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

taskito-0.20.0-cp313-cp313-win_amd64.whl (7.1 MB view details)

Uploaded CPython 3.13Windows x86-64

taskito-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

taskito-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

taskito-0.20.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.20.0-cp313-cp313-manylinux_2_28_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

taskito-0.20.0-cp313-cp313-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

taskito-0.20.0-cp312-cp312-win_amd64.whl (7.1 MB view details)

Uploaded CPython 3.12Windows x86-64

taskito-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

taskito-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

taskito-0.20.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.20.0-cp312-cp312-manylinux_2_28_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

taskito-0.20.0-cp312-cp312-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

taskito-0.20.0-cp311-cp311-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.11Windows x86-64

taskito-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

taskito-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl (7.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

taskito-0.20.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.20.0-cp311-cp311-manylinux_2_28_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

taskito-0.20.0-cp310-cp310-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.10Windows x86-64

taskito-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

taskito-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl (7.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

taskito-0.20.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.20.0-cp310-cp310-manylinux_2_28_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

taskito-0.20.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.20.0.tar.gz.

File metadata

  • Download URL: taskito-0.20.0.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0.tar.gz
Algorithm Hash digest
SHA256 2151fce926e736666db553c40a1ffd5a5aebb15521d5e296aa974d0748a254d8
MD5 0649fbc066536b89dbf92b953a59f9f3
BLAKE2b-256 739c2420c7a7931f2c0cb151d136a7e56435cfefb0faf8ec8ea8a37201b69beb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 040d42708416f5362d7d50aa53bdbc0ec759e7fb3c32a3bc545bc8ec03bf553f
MD5 98f8f807ac10efb25411aeb7f20690e9
BLAKE2b-256 043b2d7e5eace52361a33442422462a4b16a199bfc6fd55eda75749ab0767138

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dce3205a47ad742ef43a9de6850e560e0e133678b5efcb218a4414cb8537d506
MD5 4ff165c0320ded7f48a3e2ff81fee960
BLAKE2b-256 9fae7e102a71885917952d576d67ed14e0c2a8899963004eee3f780c64d245b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8a90ceaaf6c87874a637ddd990d580c9e8022ba811dbcc76820ddd14639a8ef
MD5 78afd5ba178e3fc3b0bc7dcc0de3bbcd
BLAKE2b-256 69178b69eb84aaccd3dbbc5ea7f87e6dfc391f97daf1fbe56e2fe0187092a4ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b3b8173e55d130c409d608ad0c021e1590dd6001fe64555a8f09025b8fac9d2
MD5 263c667964b709d473f2ed04fc6c943f
BLAKE2b-256 5999700c578b77bb6f5d1efbf50361dfec89605ec69362694d8c1a547ac365ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d762776c40abdb3786ebf2b6ba7a0193993232f6adb44f219dcc886cf9a1aaf
MD5 bbceef823a5634fc93e57cabd215b26d
BLAKE2b-256 4c8c1a468e96360f299df4c601e807885d2bf403a7b4938a504e7804b3bd6f6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a67c963db458111e4e48c649a66a02b7f5f24117bdfd4de39a831bab7d8a287
MD5 6f68adccc61afea20009e58bdd1eee30
BLAKE2b-256 6f4786babd7f34e19070620ecb8b6ff95e148d6e4935782ee393b01cabffd986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41e8f4b65bd7603997c2a4d38fffffd349e6ba85990eb1dc88663c9fdedda77f
MD5 3644315f9f8ba038d8074334090e26e5
BLAKE2b-256 c55d00dde8d900ef4ca439e09de960f4bb17d72b4ea1f6f95a18fc7d86b6f7e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 849adb99c6d82c3ed0b87d94673734def3d254aac059ba6c659c7c8bf5da903f
MD5 4e413cb909559ec959afdcdd5069f528
BLAKE2b-256 47fd048f690e99a23674168610ef91d2621f6c814cf929ed3eb6688ba78d85c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5198c3f67e3c787b07892f4a4dbdacfed3b591273fc29bc1e1a49b11ff7af507
MD5 36522aedd904722af1ccdea2edbf029d
BLAKE2b-256 4125d191b032e9212746e049263bb53d8863e3ddacb16ed67a98b06d241207f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44d4e52e2ed0b911446798cb55ff4504080a5c73f93093f5562425d7484424ff
MD5 95bca89165c8dcd2648ef7d5a9ed5e20
BLAKE2b-256 946d7266a2a67cdd3e8fe0e48e036a86a391c2e314eaa188e9574bd6cdd31b46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15d5aab0a4e4c219595f34b5967894e124e4957317668ccc797b37f7a0d38a55
MD5 a00b6d9758937f6d297d2a1ffd08bab0
BLAKE2b-256 7d9d7de53ac604bbfa7aab8b6d8d47a4a09898daa7ab2e16b56189cfc88fdaa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eedd073774eaed0a5ae30a5c96967b11fb6532e31265e987245a0c427d22987c
MD5 715472bbca9fb38ea4df159cc2168d19
BLAKE2b-256 a1abae124204e448cbc1a364e54917967dd03266775acd327ef837aa51978c6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f580c2fb42911fb5fd3ea3c255276bd602f246c6e65c50f394e068cbec7d0d73
MD5 5d0a41bf0d448381d706472b1bd2c1dc
BLAKE2b-256 490967677285f5fd015bf40d3a2ae57d2936368a33ac496a108a98e8e3194960

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7c9c1686acf8bfea9cfc26db463a3ac8d7e4aa490100deaaf54b9846f26428e
MD5 0a8011e42f556c3bb729f6270b298d79
BLAKE2b-256 94dd1e05ffa9f71e2381cf9d978a7e66e703a016be60bb3b8a1c1f70c1f0338e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2109db16b1bf84b13c54104c4974eb70f3b6b34e50fc240d362ec022030798fd
MD5 8e9dd7ac93274d20d29208c638b5a819
BLAKE2b-256 79e476919feefd8904c4e597e4ab5287e89bdc4600f81c6f61f2137fc732fba7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6a7cf0998181fd1c1bba23d77ee2f3d5b4abb9519b9ef387498710882f073c1
MD5 c530cd8fdc01683bb52ef4e6827fab4f
BLAKE2b-256 931121cf62b55368f17a84d9834f0a63e76f228a0ba1e5953c14f6c4d9568a97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fe0508f89f9c95cdfa7923415d45eb295c67290626f2ad9c873472e21942720
MD5 d6f9ce6ad3d347da925be0be2b765a06
BLAKE2b-256 bff6e380dd543fb5cb6d69c0da1685f9a4a00b391104785210138d3b04f8dd9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac5c49a738aeb9aed485bc89d156bcd3f6aee98829e21a0ec0161e0067fd43eb
MD5 7a74ea245cbfb4035447fce8221889f8
BLAKE2b-256 cf9cba4eac69ff74c7a1463c2b06c62a40d8ab0e90b00640f30205424a6448f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6bc0085940af550a58f57dae906cd1c6159fc62287ad8640fba04ad52d2cafa8
MD5 71adf5125243ab98b764e603052aa47c
BLAKE2b-256 4c8893f4d8c8916cf99b27207a5d6b10b50903001ec7142d44dce41d22b400ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64767b96ac565469c3f432735b45e6202ed19a1cf837837aa48bed7a30892c42
MD5 6153d14a7f130c90a17663fd8ebc25cb
BLAKE2b-256 d41f7dc92ec31cc1226d2479c8d5617d786ccfdf08ef29292144764b3f309131

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bce544a9fb461fedf4248c3be169e3935b49dd7aa6a8d9d55c0aabdf7ddc1851
MD5 edb72e75ae4696ec89910a495ddb33e3
BLAKE2b-256 b97adc6504c1fbb7a701d2f7da1c07ae00b6567c580099a40caf505a04e3760d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92b608be20368224e4e4da2341856c290172680064ad8379aad7c4d0f5d405e8
MD5 fb07a0aadb1b79cea13cb115e7d11ed2
BLAKE2b-256 a15f2d09ce7afa46bef63082bb692698772d569477d3eb48d94d2bec44e8d5c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebb307d6cc865d5c4f2b42bc33d98f84bfb9ae10467c21fadee0fb48c78dbf9e
MD5 c06dea57acdaf0f5e03feb974adadceb
BLAKE2b-256 ba940bbc85e7da8ade7ff63a7d46ae1b2eb2d94ee2964f25d8d886e7a1b53a77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f9e27e3ff4ccb10d068cc95c36e4a8b400ed74e06258a44b2f29eb597af9111
MD5 ea1617d09ae7b81cb61eca2a2df1305c
BLAKE2b-256 9de9c8777d6024a4bb29c3916fe96eeb17a19f1a8e6b41505652e398f63a5a6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12890179d2a4ab34a92b1813a25f34a90d590f26969312cef683eb2a1d00b0be
MD5 676cd78f486723355633fb6f579c6ad9
BLAKE2b-256 898355015e6031f129d569c304e48199f0d21777b70277c652e58215d9c69331

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 198ab427f0df2072ab7a882d793b1222a60b44cabba4e31bd771e4a1c6dd0c13
MD5 0e5600089ee15c2175592516c9b7116d
BLAKE2b-256 5bf63db1bb9a4ecf984800823a32170d6a17ef9e4346c6c461d57b864189fb4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 590962c486a08d5eb4da45cdc2f3b3da7dbb93edf86a98df6ac96f3349165829
MD5 ffb75e375b53b362d285593682301d60
BLAKE2b-256 6d1242166a2a41da600ec0d554a032a28c41ca06fb2eea2889b48b9cffce756a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6789386e12940e1555d2804922f494cc65df036394915990c90db7f36a9ba48
MD5 5cacc6f1aafa031f713e6646e4bc7607
BLAKE2b-256 f0434c17848d3a87ecd4837fff1947642fec0ebd5be387733b6a1097ec9217c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97b900d3b80a5a83c21e08e6aded9555e62dd4aca6f74e31104b3e760c6c3308
MD5 181e80fe9c5c7cbbf3df217130997716
BLAKE2b-256 867fc8180c0eeca0f59593ed2a98a82d1113f38c0c6aeb3fc8b493bb41e45917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7cfdd096bd039fd65fe98555653633f54308510e4bfeefca66e3d9fb91cc9d9
MD5 7af2a4468fc4761e51fd19f653bf2cb8
BLAKE2b-256 e12f8f5d63458f191a032a2618fa8727b8f69e16bc3dd2723f7a1c5ed0c0a4b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3d5c43feac6b05a658a5f56eeca461840b6f7bed3039db609249cc282b0683a
MD5 31a136d4a21dff1f85ef8a39640a7926
BLAKE2b-256 e3f93b42a93f331676be42a07f552273a84a1f7a8ab0303430bbc11a6f13322f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee2dc0896e48ef4388b9d768dd11077036b406656396633246f6ea05d2ea2db6
MD5 b8f8cfe74d4aea81dfaa2462f754a137
BLAKE2b-256 3395c3c5cf8e516b96b0ffb530f72ef860e2bf6f7bdb315b6c1219bd8698b802

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.0-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3608b727c6560646721489172dc44ca775c294421b75cb9d9d8295193412443
MD5 a309429f09d0c5c9ac7625d6799a89da
BLAKE2b-256 a5951734d3a948c9afd828edb5900b3680e3163719cbc47a62748cd44260594d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6841144754602e9407fe3bffbd55018d7ee4efb8782f93341c76d13461e9d889
MD5 01dc29d7517827baf08613f91c7c7e45
BLAKE2b-256 0f85b103879d40339711d4776a86ba9d5a9aad4b3ca533d43bbda8944ead4011

See more details on using hashes here.

File details

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

File metadata

  • Download URL: taskito-0.20.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.28 {"installer":{"name":"uv","version":"0.11.28","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.20.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff0d764313d20418b691cb77aba509748e828e5a0cdff35bfd4119871f3a06e3
MD5 9487a5d1122470503b2914c760028ca1
BLAKE2b-256 6c54826a709bd8e11c2bb5cdffc4e96cba2501fa204704d3fa89b532fd15847d

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