Documentation • Getting started • API reference • Benchmarks
A featherweight task queue for Python, with a Rust core.
ArdiQ runs the worker loop and every Redis round-trip in Rust (PyO3 + tokio), off the GIL; you write tasks in plain Python. The two meet at a single async callback, with the GIL held only for the microseconds it takes to start a task and read its result — so one process takes a lot of work without asking for much in return.
Batteries included: priorities, cron, delayed and scheduled tasks, retries with backoff, aborts, results, and enqueue that type-checks against your task's signature.
Measured against five other Redis-backed queues on the same machine, same sitting:
| Tasks/s | ArdiQ | Taskiq | Streaq | arq | Dramatiq | Celery |
|---|---|---|---|---|---|---|
| CPU-bound | 394 | 356 | 322 | 283 | 12.5 | 12.5 |
| Dispatch | 2,895 | 2,051 | 1,179 | 789 | 1,787 | 861 |
| I/O-bound | 95.3 | 96.9 | 91.8 | 87.6 | 94.1 | 71.2 |
| Enqueuing | 81,636 | 2,503 | 27,433 | 999 | 2,711 | 1,886 |
| Memory | 33 MB | 91 MB | 48 MB | 30 MB | 56 MB | 50 MB |
Only arq is lighter, and it is last or second-to-last on every workload. The short version: everything faster than ArdiQ here is heavier, and everything lighter is slower.
Features
- 🦀 Rust core: the loop and Redis I/O run on tokio, off the GIL
- Priority queues: higher-priority tasks are consumed first
- Delayed & scheduled tasks (
delay_ms/schedule_ms) - Cron & recurring tasks (
@app.cron): 5-field cron (UTC) orevery=intervals - Automatic retries with quadratic backoff, configurable per task, or on demand (
raise Retry) - Enqueue by name (
app.send("task", ...)): producers never import the task module - Error hooks (
@app.on_error): send every failed attempt to Sentry or your own reporter - Typed failures (
BrokerError): catch "Redis is down" without a blanketexcept - Unique task names, enforced at registration, so a duplicate raises instead of silently shadowing
- Deduplication (
@app.task(unique=True)): an identical call already in flight is reused, not queued twice - Crash recovery: in-flight tasks of a dead worker are reclaimed (
XAUTOCLAIM) - Results with TTL, plus task status (
queued/running/complete/not_found) - Abort/cancel (
job.abort()): drops queued tasks and cancels running ones over pub/sub - Sync & async tasks: blocking sync functions run in a thread pool
- CLI worker (
ardiq run module:app) and burst mode (drain the queue and exit) - Multiprocess (
--workers N): N supervised worker processes, for CPU-bound work the GIL would cap
Performance
Six queues, one machine, one sitting, three workloads, three interleaved rounds each — one worker per library, 10 concurrent tasks, Redis on localhost.
CPU-bound (1,000 tasks of ~2.4 ms of hashing): 394 tasks/s, ahead of Taskiq's 356 and Streaq's 322. 10% faster than the next queue, on a third of its memory.
Dispatch (20,000 tasks that do nothing — the queue's own overhead and nothing else): 2,895 tasks/s against Taskiq's 2,051. 41% ahead, and the tightest tail latency in the field: p99 of 6,820 ms ±127, where Taskiq swings to 9,292.
I/O-bound (1,000 tasks of 100 ms): 95.3 tasks/s, second to Taskiq's 96.9 — 1.7% apart, in a scenario whose arithmetic ceiling is 100. There is nothing left to win here and we are 95% of the way to it.
Enqueuing (staging 20,000 tasks): 81,636 tasks/s. Streaq, the only other queue here with a bulk API, does 27,433. For a web handler that fans work out mid-request, that is the difference between 0.2 s and 7 s of blocked request.
Memory: 33 MB resident per worker. Taskiq spends 91 MB, Dramatiq 56, Celery 50, Streaq 48. Only arq is leaner at 30 MB — and arq is last or second-to-last on all three workloads.
Read the caveats, because they matter and they are ours to state:
- Celery and Dramatiq's CPU numbers (12.5 tasks/s) are an artifact of this 16-thread box: prefork workers thrash the GIL harder the more cores you give them. On a laptop they land near 55. Do not read that row as a 30× win.
- The GIL caps in-process CPU work for every Python queue, ArdiQ included.
Your task body is serial per worker. Scale out with processes:
ardiq run app:app --workers 4. - Absolute numbers do not travel between machines. Compare rows within a table, never against someone else's hardware.
The suite is public and reproducible, including the parts where we lose: benchmark repo · performance guide.
When to use ArdiQ
Reach for ArdiQ when you want:
- High concurrency on a small footprint — async-native, with the loop and Redis I/O in Rust, so one process does a lot without eating memory.
- A modern, typed API —
@app.task, awaitable enqueue,Jobhandles, results and status built in. - Reliability out of the box — priorities, retries with backoff, delayed and scheduled tasks, and crash recovery via Redis consumer groups.
- Redis you already run — no extra broker to operate.
Consider the alternatives when:
- You need to saturate many CPU cores in one process — like every single-process Python queue, ArdiQ runs your task body under the GIL, so CPU-bound work is serial per worker (scale out with more workers). For heavy CPU fan-out, a prefork model (Celery, Dramatiq) can be simpler.
- You need a large, battle-tested ecosystem today — Celery has years of integrations, schedulers, and dashboards. ArdiQ is young and moving fast.
- You can't run Redis — ArdiQ is Redis-only by design.
Against the other modern async queues — arq, Taskiq, Streaq — the edge is the Rust core: it moves more tasks per second and holds a third of the memory while doing it, and the API arrives with priorities, cron, retries, aborts and typed enqueue already in the box.
Installation
$ pip install ardiq
That's everything — the library, the ardiq worker command, and a single runtime
dependency (msgpack). Define tasks, enqueue them, and run a worker either from
the CLI or from your own code (await app.run()).
You also need a Redis server — the quickest way is Docker:
$ docker run -d --name ardiq-redis -p 6379:6379 redis
or install it from your package manager (or redis.io).
Building from source (if you want to hack on ArdiQ itself): you'll need Rust and uv. Clone the repo and run
uv sync.
Quickstart
Define an app and some tasks (example.py):
from ardiq import Ardiq
app = Ardiq(redis_url="redis://localhost:6379", queue_name="example")
@app.task()
async def add(a: int, b: int) -> int:
return a + b
@app.task(max_retries=3)
def slow_double(x: int) -> int: # sync task — runs in a thread
return x * 2
Start a worker:
$ ardiq run example:app
Enqueue tasks from anywhere and read their results:
import asyncio
from example import add
async def main():
job = await add.enqueue(2, 3) # returns a Job handle
print(job.id)
print(await job.status()) # 'queued' | 'running' | 'complete'
print(await job.result(timeout=5)) # waits → TaskResult(success=True, value=5, tries=1)
asyncio.run(main())
Or run the whole thing in one process with python example.py, which enqueues a
few tasks and processes them in burst mode.
Enqueuing by name
The side that enqueues doesn't have to be the side that runs. app.send puts a
task on the queue by name, so a web service can dispatch work without importing
the task module — or its dependencies — at all:
from ardiq import Ardiq
from fastapi import FastAPI
api = FastAPI()
queue = Ardiq(redis_url="redis://localhost:6379", queue_name="example")
@api.post("/reports")
async def create_report(user_id: int):
job = await queue.send("build_report", user_id, format="pdf")
return {"job_id": job.id}
Nothing is checked locally: the name is resolved by the worker that picks the
task up, and one it doesn't know fails there like any other error. For the
enqueue options, app.ref hands back the same handle @app.task returns:
await queue.ref("build_report").options(delay_ms=60_000, priority="low").enqueue(7)
A ref can be enqueued but not called — there is no local function behind it.
Priority does not travel with the name. Everything else you put on
@app.task(...) — max_retries, backoff_ms, timeout — is applied by the
worker, which has the registry and can look it up. Priority is the exception: it
picks which stream the task goes into, so it is settled by the producer, before
the payload leaves. A task declared @app.task(priority="high") and dispatched
by name lands in the app's default_priority instead, with no warning — pass it
at the call site:
await queue.ref("build_report", priority="high").enqueue(7)
Since the fallback is the middle lane, forgetting it is survivable rather than disastrous, but the work still won't be where you declared it belongs.
Unique tasks
Two "rebuild this shop's index" jobs for the same shop do the same work twice.
Declare the task unique=True and an identical call that is already waiting or
running is not enqueued again:
@app.task(unique=True)
async def rebuild_index(shop_id: int): ...
first = await rebuild_index.enqueue(42)
second = await rebuild_index.enqueue(42) # nothing new is enqueued
assert second.id == first.id # the job already in flight
You still get a Job back, the one already doing the work, so "someone got
there first" is never an error to handle. Identity is the call itself, name plus
arguments, so other shops are unaffected and keyword order doesn't matter. The
window lasts exactly as long as the task does, retries included; once it
finishes, the same call can be enqueued again and starts a fresh run.
The id is derived from the payload, so every process computes the same one:
duplicates collapse inside an enqueue_many batch, and a producer with no
registry can dedup with queue.ref("rebuild_index", unique=True). Per call,
.options(unique=True) turns it on and .options(unique=False) turns it off.
Retries and error hooks
A task that raises is retried up to max_retries times, waiting tries²
seconds between attempts (or the fixed backoff_ms you configure). Raise
Retry to make that call from inside the task instead:
from ardiq import Retry
@app.task(max_retries=5)
async def call_api():
response = await client.get(URL)
if response.status_code == 429:
raise Retry("rate limited", delay_ms=30_000)
return response.json()
Retry still respects max_retries, so it can't loop forever; when the budget
runs out the task fails with it as the error.
@app.on_error runs a hook on every failed attempt, before ArdiQ decides
between retrying and failing — this is where a reporter like Sentry goes:
import sentry_sdk
@app.on_error
def report(ctx):
sentry_sdk.capture_exception(ctx.exc)
log.warning("%s failed on try %s (retrying: %s)", ctx.name, ctx.tries, ctx.will_retry)
The hook takes an ErrorContext(name, task_id, exc, tries, will_retry), may be
sync or async, and can be registered more than once — all of them run. One that
raises is logged and never changes the task's outcome.
It fires on timeouts, on every retry, and when a worker is handed a task it
doesn't know. It does not fire on abort, nor for a Retry you raised
yourself — only when that Retry finally gives up. Hooks run on the worker's
event loop, so keep them quick.
When Redis is what failed — unreachable, refusing or dropping connections — the
call raises BrokerError (→ ArdiqError → RuntimeError), so an enqueue in a
request handler can be caught precisely instead of with a bare except RuntimeError:
from ardiq import BrokerError
try:
job = await queue.send("build_report", user_id)
except BrokerError:
raise HTTPException(503, "queue unavailable")
Shared resources (lifespan)
Tasks often need something expensive that should be built once per worker, not
per task — a database pool, an HTTP client. @app.lifespan registers an async
generator that sets up before the loop starts and tears down after it stops:
@app.lifespan
async def lifespan():
pool = await asyncpg.create_pool(DSN)
yield {"db": pool} # entries land on app.state
await pool.close()
@app.task()
async def count_users() -> int:
return await app.state.db.fetchval("select count(*) from users")
Yield a mapping to populate app.state, or yield nothing and assign
app.state.db = ... yourself. Either way app.state is available to async and
sync tasks alike.
The hook only runs inside app.run(), so a process that just enqueues never
opens the pool. Teardown runs even if the loop fails, and an exception during
setup stops the worker before it takes any work.
Aborting tasks
job.abort() cancels a task whether it is waiting in the queue or already
running on some worker:
job = await slow_report.options(delay_ms=60_000).enqueue()
if await job.abort(): # False if it already finished
result = await job.result(timeout=5)
print(result.aborted) # True
print(result.success) # False
An aborted task ends as an ordinary failed TaskResult with aborted set, so
it never retries and result(timeout=) returns as soon as it settles. What
happens depends on where the task is when you call it:
| Where the task is | What abort does |
|---|---|
| Waiting on a delay or schedule | Dropped and finalized immediately. |
| Queued for pickup | The next worker to reach it skips it instead of running it. |
| Running | The worker holding it cancels it, within about a millisecond. |
Cancelling a running task needs a long-running worker: the worker subscribes
to the queue's abort channel while it runs, which --burst skips. Aborts are
still honored under burst, just not mid-flight.
Because cancellation is asyncio cancellation, a sync task can't be
interrupted mid-call — the worker stops waiting on it and reports it aborted,
but the thread runs to completion. Async tasks are cancelled at their next
await, so a task that swallows CancelledError keeps going.
Recurring tasks
Register a task to run on a schedule with @app.cron — either a standard 5-field
cron expression (evaluated in UTC) or a fixed every= interval:
@app.cron("0 3 * * *") # daily at 03:00 UTC
async def nightly_report():
...
@app.cron(every=30) # every 30s — int/float seconds or a timedelta
async def heartbeat():
...
Recurring tasks fire while a worker is running, and each occurrence is an ordinary
task with its own result, status, retries and timeout. The cron syntax is the
common subset — *, lists ,, ranges a-b, and steps */n — at minute
resolution; use every= for sub-minute schedules.
Configuration
Ardiq(...) accepts:
| Option | Default | Description |
|---|---|---|
redis_url |
redis://localhost:6379 |
Redis connection URL |
queue_name |
"default" |
Logical queue (key namespace) |
priorities |
["default"] |
Priority names, lowest-first |
concurrency |
16 |
Max tasks running at once |
prefetch |
concurrency * 2 |
Max tasks held in memory (drives backpressure) |
idle_timeout_ms |
60000 |
When an unrenewed in-flight task may be reclaimed |
result_ttl_ms |
300000 |
How long results live (0 drops, negative keeps forever) |
burst |
False |
Exit once the queue drains |
serializer / deserializer |
msgpack | Wire codec; pass pickle.dumps/pickle.loads to send datetimes/objects |
cron_poll_s |
1.0 |
How often the worker restages due @app.cron occurrences |
@app.task(...) accepts name, max_retries (default 3), backoff_ms, timeout (seconds), and priority.
@app.cron(spec, *, every=…, …) takes those same per-task options plus the schedule.
Use task.options(delay_ms=…, schedule_ms=…, priority=…, task_id=…).enqueue(...) for one-off overrides.
Logging
ardiq run configures Python's logging for the process (INFO by default, DEBUG
with --verbose/-v) and also initializes the Rust core's own logging at the same
level. Worker lifecycle (worker starting, worker stopped) logs at INFO; task
lifecycle logs at DEBUG (task started, task succeeded) through WARN (task retry scheduled) and ERROR (task failed, task unknown). Task args, kwargs,
and results are never logged.
Logging inside a task is just standard logging — it works the same for async tasks
and for sync tasks run via asyncio.to_thread:
import logging
logger = logging.getLogger(__name__)
@app.task()
async def send_email(to: str) -> None:
logger.info("sending email to %s", to)
...
If you embed Ardiq outside the ardiq CLI, call logging.basicConfig(...) yourself
(see example.py).
Development
$ docker compose up -d # Redis on localhost:6379
$ uv run pytest # test suite (needs Redis)
$ uv run ruff check . # lint
$ uv run ty check ardiq tests # type-check
After changing the Rust core, rebuild with uv sync --reinstall-package ardiq.
Contributing
ArdiQ is young, and that is the good part: the decisions that shape a task queue are still open, and the person who hits a rough edge first gets to decide how it gets fixed. Two of this month's releases came straight out of somebody porting a live Celery app over and writing down what hurt.
The most useful thing you can do is use it and tell us what broke. After that: bug reports, docs fixes, and features are all welcome — see CONTRIBUTING.md for setup, the layout of the codebase and what to open an issue about first. Questions, ideas and "is this supposed to work like this?" go in Discussions.
If you want something bigger to sink your teeth into, unique task locks and
multiprocess workers (--workers N) are the two things standing between ArdiQ
and 1.0.
License
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ardiq-1.0.0.tar.gz.
File metadata
- Download URL: ardiq-1.0.0.tar.gz
- Upload date:
- Size: 46.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
793e9472b12f2741d0a112d91d91ae362a8ece1074e649a706deda0f49c3e980
|
|
| MD5 |
7874b6b2c897d1c3b10965e597f7a301
|
|
| BLAKE2b-256 |
812235f4a1b928894d92321fd7438304f295fd9510871813d86ab5ec53879a2a
|
Provenance
The following attestation bundles were made for ardiq-1.0.0.tar.gz:
Publisher:
release.yml on 17tayyy/ardiq
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ardiq-1.0.0.tar.gz -
Subject digest:
793e9472b12f2741d0a112d91d91ae362a8ece1074e649a706deda0f49c3e980 - Sigstore transparency entry: 2444055231
- Sigstore integration time:
-
Permalink:
17tayyy/ardiq@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/17tayyy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ardiq-1.0.0-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: ardiq-1.0.0-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a1350cf572b786ec0c9ecdb9ffa4a16be4ca0d1cac5f4059e4342bbada46a97
|
|
| MD5 |
881ddb86cc90a465e23e61d5cbfc5d41
|
|
| BLAKE2b-256 |
b8106217fdd17f116285ac5be85a3c2192944b5eace3d8884e817866049d6b32
|
Provenance
The following attestation bundles were made for ardiq-1.0.0-cp39-abi3-win_amd64.whl:
Publisher:
release.yml on 17tayyy/ardiq
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ardiq-1.0.0-cp39-abi3-win_amd64.whl -
Subject digest:
7a1350cf572b786ec0c9ecdb9ffa4a16be4ca0d1cac5f4059e4342bbada46a97 - Sigstore transparency entry: 2444055676
- Sigstore integration time:
-
Permalink:
17tayyy/ardiq@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/17tayyy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ardiq-1.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ardiq-1.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e276bcc844836faa0e3356983ee1468b41a88a2ec0e24a59095b4d228985673a
|
|
| MD5 |
822f8944ad3bfba2df60da82deb604cb
|
|
| BLAKE2b-256 |
b7f423836f0fd65d3a8230642f63911096d00392fd49e63ef5e614993f42bdf9
|
Provenance
The following attestation bundles were made for ardiq-1.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on 17tayyy/ardiq
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ardiq-1.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e276bcc844836faa0e3356983ee1468b41a88a2ec0e24a59095b4d228985673a - Sigstore transparency entry: 2444056073
- Sigstore integration time:
-
Permalink:
17tayyy/ardiq@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/17tayyy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ardiq-1.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ardiq-1.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aad13a130af512794c26daed6ee217ab36987f1220ce765dac29361d0aa08009
|
|
| MD5 |
b3b9ebb7f93226a1059996353422e18e
|
|
| BLAKE2b-256 |
b55d53873d6d9414d60348b78c077a9547962030fa99985ebe5fd409c625119b
|
Provenance
The following attestation bundles were made for ardiq-1.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on 17tayyy/ardiq
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ardiq-1.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
aad13a130af512794c26daed6ee217ab36987f1220ce765dac29361d0aa08009 - Sigstore transparency entry: 2444057217
- Sigstore integration time:
-
Permalink:
17tayyy/ardiq@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/17tayyy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ardiq-1.0.0-cp39-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: ardiq-1.0.0-cp39-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
361afcfbaa32f9ba98cfe9705c7c691d576c3b4ea126029c970c4cc500f2302a
|
|
| MD5 |
e19122042f3ddb7da146aa8f0d5a8709
|
|
| BLAKE2b-256 |
cd1cb9fb18cd6a74b5084de2bfd44c7c798dbefd53df59ef3d2e1da1bec924a0
|
Provenance
The following attestation bundles were made for ardiq-1.0.0-cp39-abi3-macosx_11_0_arm64.whl:
Publisher:
release.yml on 17tayyy/ardiq
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ardiq-1.0.0-cp39-abi3-macosx_11_0_arm64.whl -
Subject digest:
361afcfbaa32f9ba98cfe9705c7c691d576c3b4ea126029c970c4cc500f2302a - Sigstore transparency entry: 2444056519
- Sigstore integration time:
-
Permalink:
17tayyy/ardiq@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/17tayyy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ardiq-1.0.0-cp39-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ardiq-1.0.0-cp39-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b791cd160d551e172c88662204cb8324558bb8fd6400b540c49c0e8c0beea5d0
|
|
| MD5 |
863e55b4c9d376774897bcd0b9a85881
|
|
| BLAKE2b-256 |
b5ff2c3a0ce787a7152a865800382519b7e6d9edbab59c67bd3e414a1a99c902
|
Provenance
The following attestation bundles were made for ardiq-1.0.0-cp39-abi3-macosx_10_12_x86_64.whl:
Publisher:
release.yml on 17tayyy/ardiq
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ardiq-1.0.0-cp39-abi3-macosx_10_12_x86_64.whl -
Subject digest:
b791cd160d551e172c88662204cb8324558bb8fd6400b540c49c0e8c0beea5d0 - Sigstore transparency entry: 2444056878
- Sigstore integration time:
-
Permalink:
17tayyy/ardiq@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/17tayyy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f684aeb08f2a26c9ef47f97cfd25c801d0af9e47 -
Trigger Event:
push
-
Statement type: