Skip to main content

Python wrapper for AIO

Python bindings for async file I/O on Linux and a pure-Python/thread fallback for other platforms.

Three backends are available:

Backend Kernel Notes
linux_uring ≥ 5.6 io_uring - shared ring buffers, zero-syscall completions
linux_aio ≥ 4.18 kernel AIO (io_submit / io_getevents), O_DIRECT only
thread_aio any pthreads pool, portable
python_aio any pure Python, no C extension required

Example

import asyncio
from caio import AsyncioContext

loop = asyncio.get_event_loop()

async def main():
    # max_requests=128 by default
    ctx = AsyncioContext(max_requests=128)

    with open("test.file", "wb+") as fp:
        fd = fp.fileno()

        # Execute one write operation
        await ctx.write(b"Hello world", fd, offset=0)

        # Execute one read operation
        print(await ctx.read(32, fd, offset=0))

        # Execute one fdsync operation
        await ctx.fdsync(fd)

        op1 = ctx.write(b"Hello from ", fd, offset=0)
        op2 = ctx.write(b"async world", fd, offset=11)

        await asyncio.gather(op1, op2)

        print(await ctx.read(32, fd, offset=0))
        # Hello from async world


loop.run_until_complete(main())

Selecting a backend

from caio import AsyncioContext picks the best available backend automatically (linux_uring → linux_aio → thread_aio → python_aio).

To force a specific backend use the CAIO_IMPL environment variable:

CAIO_IMPL=uring   python my_app.py   # linux_uring
CAIO_IMPL=linux   python my_app.py   # linux_aio
CAIO_IMPL=thread  python my_app.py   # thread_aio
CAIO_IMPL=python  python my_app.py   # python_aio

Or import a backend directly:

# io_uring (Linux ≥ 5.6)
from caio.linux_uring_asyncio import AsyncioContext

# kernel AIO (Linux ≥ 4.18)
from caio.linux_aio_asyncio import AsyncioContext

# thread pool
from caio.thread_aio_asyncio import AsyncioContext

A default_implementation file placed next to caio/__init__.py (useful for distro package maintainers) may contain one of uring, linux, thread, or python on its first non-comment line.

Troubleshooting

io_uring blocked by seccomp

Containers (Docker, Podman, Kubernetes) often block io_uring via a seccomp filter. The import will raise ImportError with a diagnostic message if io_uring_setup(2) returns ENOSYS.

Fix:

# Docker / Podman
docker run --security-opt seccomp=unconfined ...

# Kubernetes
securityContext:
  seccompProfile:
    type: Unconfined

linux_aio compatibility

linux_aio requires kernel ≥ 4.18 and a compatible filesystem. If it does not work in your environment you can fall back to thread or python:

CAIO_IMPL=thread python my_app.py

Release files for caio 0.12.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for caio 0.12.9
File Size Uploaded
caio-0.12.9.tar.gz 84.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for caio 0.12.9
File
caio-0.12.9-py3-none-any.whl Python 3 none any Details
caio-0.12.9-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp315-cp315t-manylinux_2_34_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp315-cp315t-manylinux_2_34_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
caio-0.12.9-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp315-cp315-manylinux_2_34_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp315-cp315-manylinux_2_34_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
caio-0.12.9-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp314-cp314t-manylinux_2_34_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp314-cp314t-manylinux_2_34_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
caio-0.12.9-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp314-cp314-manylinux_2_34_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp314-cp314-manylinux_2_34_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp314-cp314-macosx_26_0_arm64.whl CPython 3.14 CPython 3.14 macOS 26.0+ ARM64 Details
caio-0.12.9-cp313-cp313t-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64 Details
caio-0.12.9-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp313-cp313-manylinux_2_34_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp313-cp313-manylinux_2_34_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
caio-0.12.9-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp312-cp312-manylinux_2_34_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp312-cp312-manylinux_2_34_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
caio-0.12.9-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp311-cp311-manylinux_2_34_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp311-cp311-manylinux_2_34_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
caio-0.12.9-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
caio-0.12.9-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
caio-0.12.9-cp310-cp310-manylinux_2_34_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.34+ x86-64 Details
caio-0.12.9-cp310-cp310-manylinux_2_34_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.34+ ARM64 Details
caio-0.12.9-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 5.9 MB

Release files / caio-0.12.9.tar.gz

Download URL caio-0.12.9.tar.gz
Size 84.1 kB
Tags Source
SHA-256 checksum
How to use checksums
99e99419b44ab5511f7468c6a452887dd125b8e4042672a7589f0cf01d254ea8
BLAKE2b-256 checksum
How to use checksums
5651bd8b64bf700f5b1a956a60bb62276b79a094e8cd0ddc60b1b61c3edd496f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-py3-none-any.whl

Download URL caio-0.12.9-py3-none-any.whl
Size 26.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
bf12d4f014b2a33e642ed7905b5787656ede2fc24be21f7c086826ff0d32cec3
BLAKE2b-256 checksum
How to use checksums
c09996888ad510c9adf42bfbad9ba139831b58055fd61e1301f6268e9bb490b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 183.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b17b9aca6360f72bf07f1062bd60d8849f3fd5c1cb77f43923d8dec7fdbbb5df
BLAKE2b-256 checksum
How to use checksums
fb8f2b08f5e117e3663396cfd0d935cdb9218ad3c374d10911ec278fc0c6aee5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 185.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b30f3f36e45afb0814fc828cbb10ef9dd91043ff0b0a14ffe1cd8a348b461179
BLAKE2b-256 checksum
How to use checksums
c93544b405e601c9662223b01b56a38e16920d9633a8897a223399efa791d0b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315t-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp315-cp315t-manylinux_2_34_x86_64.whl
Size 183.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
7490517a72f4ad01b39311ff8e909c3cab77f12dddd370ba6deb035313038468
BLAKE2b-256 checksum
How to use checksums
4980950a557f05c492416e3d5b4ec40d7b6c330567b311141aafe69ecb86a063
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315t-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp315-cp315t-manylinux_2_34_aarch64.whl
Size 187.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
cc30e0c458d2d6785e72bb5117086ffce61b5c058bee5637c5aea69042db5e86
BLAKE2b-256 checksum
How to use checksums
f59e080587a73689f5f0de33f8be75cbb2e35c822d50d7f957150bdcef38dd92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315t-macosx_11_0_arm64.whl

Download URL caio-0.12.9-cp315-cp315t-macosx_11_0_arm64.whl
Size 42.8 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e600822c774fdb434e43163c7fc0d4dcfaa6540ebbf77e82e5f0dac071b27f8f
BLAKE2b-256 checksum
How to use checksums
29fa2842996fdb0a906325c57bc8adf205be4556e33c7ad0d04eec80077ddc3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp315-cp315-musllinux_1_2_x86_64.whl
Size 163.1 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6c28c4789a9c6d8e8b36cac15f85727bd8e4d312c98fc5aa4fceaa4631669786
BLAKE2b-256 checksum
How to use checksums
a486bd5b6553fa6bab7976bf60087c2a73a8546c5bf5499e805d51ea0c33016c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp315-cp315-musllinux_1_2_aarch64.whl
Size 164.1 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7fee93281b220488a5e6949ac197a52c2f1e877c6e32aec5ce658e9add3eba60
BLAKE2b-256 checksum
How to use checksums
0160aec76058124f8a5b1979351cdfc83757a752c6456c36a6bdd256b743360f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp315-cp315-manylinux_2_34_x86_64.whl
Size 163.5 kB
Tags CPython 3.15 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
aa0fe6b459ef45d9d1fe82e22d5d849dcdb07e3a87f56444d1ff799249a08576
BLAKE2b-256 checksum
How to use checksums
f263ebb69add3f15b4345323f778295b27988b653b191df54060c19a66ea44d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp315-cp315-manylinux_2_34_aarch64.whl
Size 166.5 kB
Tags CPython 3.15 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
6634c57de5883819e0fb423094fe5cb480e81b8f5f46f601eb143e2c762f4c14
BLAKE2b-256 checksum
How to use checksums
c10d9b6cc05b09f66dae9cbb1633ca3c2598496239d636b95e3690db3b2c27e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp315-cp315-macosx_11_0_arm64.whl

Download URL caio-0.12.9-cp315-cp315-macosx_11_0_arm64.whl
Size 42.0 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
53d3febc3e46707786a023b28bd21213ac78332db46fae7df2a03c0cc208976d
BLAKE2b-256 checksum
How to use checksums
c8363ae6214f37413e1451b9fba72a05f5f9d64f9020db5445e2d73fa403e53e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 182.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
dada2e1ca5481e5c11201d269ac8e009ce86d34478f4426e9739470b0c2a1030
BLAKE2b-256 checksum
How to use checksums
dfdf94e65a3e77c5cb1f7ce19714084fc1f19f86fa0a1db43c63edc39d6b38d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 185.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1c043b15a19e33c0b18b1937493be6730c3b08acc33af6899f669ac8957a3e46
BLAKE2b-256 checksum
How to use checksums
655d900bb797d8e51d06b5f1aa691dc1f7bf08a01e6a67397c08f8b4c090e01b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314t-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp314-cp314t-manylinux_2_34_x86_64.whl
Size 182.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
0a571981c8724f69c34ed4c7619585d552d27fe38bad0daf970dca3e14d6922b
BLAKE2b-256 checksum
How to use checksums
0ea96fc366300809c09916ee9212711ee470ed5103d5d4895a843633a2ca1ad8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314t-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp314-cp314t-manylinux_2_34_aarch64.whl
Size 186.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
de4458707370b9f13de2ead07e6719305624b4f0aad665ce6cb2f1452eb4965d
BLAKE2b-256 checksum
How to use checksums
4720d9d7ee48d7a3cc3211cb841aa78712676416099025c60cb9e316c321d100
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314t-macosx_11_0_arm64.whl

Download URL caio-0.12.9-cp314-cp314t-macosx_11_0_arm64.whl
Size 42.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
32755af4459fed70d10a5e8c396de3ccb57e02365c7d818937a9794884b172da
BLAKE2b-256 checksum
How to use checksums
9efc228e74a8408714cc2e274250055412c1abd02cce62371820ac9da99a2a1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp314-cp314-musllinux_1_2_x86_64.whl
Size 162.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2e152e1a1970d49b6056c1c94547801fcc6b41fc12185db6628ed58ec7785b04
BLAKE2b-256 checksum
How to use checksums
3a6dd6274d9a4d637d484314456222c898988ec03c1895d3b9ec2fcefe3c24cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp314-cp314-musllinux_1_2_aarch64.whl
Size 163.0 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d3d3664c757d59d330381666683cdfa287c5bfff90819868e98ef0bb8c2d2382
BLAKE2b-256 checksum
How to use checksums
931dfbc0005d9aa44204f6d106707a3261c19e402ec64381217998df270cbbe5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp314-cp314-manylinux_2_34_x86_64.whl
Size 162.6 kB
Tags CPython 3.14 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
4a69de19ef8780ea67f5fffa6fed95af32ed4c036e338a361307314306ac816c
BLAKE2b-256 checksum
How to use checksums
a3f53baf870c5775c1bf2399d971d213d34a30750475010070a595df7f536f7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp314-cp314-manylinux_2_34_aarch64.whl
Size 165.3 kB
Tags CPython 3.14 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
83718f0ba9ff56de9c3ce7a61b463466fbb064be4f087230064abac5d08b8100
BLAKE2b-256 checksum
How to use checksums
d1f334487be50fbdc4cc809bcbe82eac565376fdfa7c675ca02feca2f96cbc6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp314-cp314-macosx_26_0_arm64.whl

Download URL caio-0.12.9-cp314-cp314-macosx_26_0_arm64.whl
Size 42.0 kB
Tags CPython 3.14 macOS 26.0+ ARM64
SHA-256 checksum
How to use checksums
bc63db6b4a54b2f1c519424acfb2b7198664e4ef8427d397215a81c0bed9e9e6
BLAKE2b-256 checksum
How to use checksums
44fdd84318ae7704b8c427584becaacfc3888fca8ec3fca25904ef479f57fa2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp313-cp313t-macosx_11_0_arm64.whl

Download URL caio-0.12.9-cp313-cp313t-macosx_11_0_arm64.whl
Size 42.8 kB
Tags CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5c43eaebf220aeb9a388d309a5352e82562a7b9b2ea0102502204413641cfed7
BLAKE2b-256 checksum
How to use checksums
3a6a5a08b26fae45320c8d6f3b42e6225c5316b39f6cea811ba3f890315b4641
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp313-cp313-musllinux_1_2_x86_64.whl
Size 162.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c3f6dc05486ce4e1027f1d2da4d84c1d6bb815886e76f34a9228d370d86a5537
BLAKE2b-256 checksum
How to use checksums
f86e5712cbf5168fdb4c65c44b0435daeeac7c00609cdc1fd3414812691fbb68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp313-cp313-musllinux_1_2_aarch64.whl
Size 162.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a11421fb4ac591e6fea5512d9a8ad1b488e7b28cf610ede973bbfb4be5177454
BLAKE2b-256 checksum
How to use checksums
ec5fb3258150ea0e87f032859df825dd0ec8e9f3a6c798addc6463cf1e4a2298
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp313-cp313-manylinux_2_34_x86_64.whl
Size 162.6 kB
Tags CPython 3.13 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
f6ffb3d448016d20d8c40c53864d81bdf7463157969de65841eeb370519dbf78
BLAKE2b-256 checksum
How to use checksums
ca0f8ec37d3d6b47b8c6bd6c68a1d2d9b5de1ea05df59b601575b7003c9439e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp313-cp313-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp313-cp313-manylinux_2_34_aarch64.whl
Size 164.8 kB
Tags CPython 3.13 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
c327977b8174337c1aaff27da17ac249d176ef8ea6e2dbf70b49cdd8038d57d3
BLAKE2b-256 checksum
How to use checksums
ccc6fea92dd83cdf28ee20d403a910e194fa5e1a97215a00e5bbbeb699ac582a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp313-cp313-macosx_10_13_universal2.whl

Download URL caio-0.12.9-cp313-cp313-macosx_10_13_universal2.whl
Size 49.0 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ed23f6ad6897fae4c02e3e8d236aa3cc18e766a7c5bb0352ea5e9fb26c5d3335
BLAKE2b-256 checksum
How to use checksums
e8bfed21d62204e4feece79985f45d2ebce6949c9e3d320e9f9e9638e9dc980a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp312-cp312-musllinux_1_2_x86_64.whl
Size 162.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ed343077d8178c003b1596f40b1f46955be963a2871a1f85519be823113b24b0
BLAKE2b-256 checksum
How to use checksums
41b1d94003593fee5b76d725e5cc51e902439ee3491c6bd4331b232b2ebf12aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp312-cp312-musllinux_1_2_aarch64.whl
Size 162.2 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a06afa038f76324f439595b7a3242abf090a80b03006ed3d7dbbb9c031baf8a3
BLAKE2b-256 checksum
How to use checksums
21ce040af704ea23a6f4383685d05068ec59301e3bb12cc2ca7c664d16a82691
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp312-cp312-manylinux_2_34_x86_64.whl
Size 162.4 kB
Tags CPython 3.12 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
f0698976f84dd40024204f0f77cf59ed7446e989575c8ad8cb64cd4b3e2871f3
BLAKE2b-256 checksum
How to use checksums
71f71894b1ca1fae9317b8b8203f999107e927ca9badafbe0f7a294952fe00cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp312-cp312-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp312-cp312-manylinux_2_34_aarch64.whl
Size 164.7 kB
Tags CPython 3.12 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
6e72fb0ddd369f712a4ad229ee0f1d7df6852e9b59b36fe8a46210b4c9ea8e82
BLAKE2b-256 checksum
How to use checksums
94313b6e9d644f9337ac6823f25b3cce838569d4b27ac9a3f9a371369f3d15d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp312-cp312-macosx_10_13_universal2.whl

Download URL caio-0.12.9-cp312-cp312-macosx_10_13_universal2.whl
Size 49.0 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
554c6ee883a0f1e95236d85b8e7d8187b212668855ac3a858acb80f5e2e82e82
BLAKE2b-256 checksum
How to use checksums
08364cf8f5a6fd0ea7234107e5ab38ca5e0058beae7477c24768a6ab51b79e0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp311-cp311-musllinux_1_2_x86_64.whl
Size 158.7 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
477d66e16948845d0f5ec6535e84c0c9ab7420b2f78f81bcf7b0f81d18a34ffb
BLAKE2b-256 checksum
How to use checksums
77651cd722b6f288ebe04d6fd85c8a5595f2b350b3070a15390566970e2eb7cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp311-cp311-musllinux_1_2_aarch64.whl
Size 160.3 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
25255807af48386c50a2b186eaa582ffd5347d67c4f1cb3aa1bb79b36ace7af9
BLAKE2b-256 checksum
How to use checksums
97c621be4805d108c21c89c205d48331d8d509116998ef39a80cbc6b40e5af62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp311-cp311-manylinux_2_34_x86_64.whl
Size 159.0 kB
Tags CPython 3.11 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
e10e3be34fca464cc5e27d3011e284fd0cde0cc488cda4742e765c8e9291647d
BLAKE2b-256 checksum
How to use checksums
76a32878af4bfaca5a25dc573afaf18d32dd32612fbde7ec5a3e51d69786b11f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp311-cp311-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp311-cp311-manylinux_2_34_aarch64.whl
Size 162.8 kB
Tags CPython 3.11 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
14483697a27aefd265decb4b595e70814d284f46bc352c75eb9e9dae94a7b398
BLAKE2b-256 checksum
How to use checksums
24931951d8cf56fdfbb4f28c4073f5a732b7863a01c2ad6a7574792726b9ed00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp311-cp311-macosx_10_9_universal2.whl

Download URL caio-0.12.9-cp311-cp311-macosx_10_9_universal2.whl
Size 48.9 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
4edc95d8dc49f91fc9e870174860729fd088f9529464a7a6a1deda8a14d59a4f
BLAKE2b-256 checksum
How to use checksums
ee90648c2d37a805528371934f649cb1070477b20d06b4bda8a1cef3ec45f2dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL caio-0.12.9-cp310-cp310-musllinux_1_2_x86_64.whl
Size 156.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3bf16c16b9318498ee7669a495d2198c44abdc0bc64483a500682c4eb41d5b52
BLAKE2b-256 checksum
How to use checksums
8b593d6a703334303c22aae055e06cd7ce50ab05135456f10df38884a0de6cc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL caio-0.12.9-cp310-cp310-musllinux_1_2_aarch64.whl
Size 157.6 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
17ec3d3cb28878e4771445f73161677a964f833f091fc88634a7214013dd8ed5
BLAKE2b-256 checksum
How to use checksums
122ea5137a9bb4899b282a6e32592403036f5d56e4140476f5b18787e0b5d129
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL caio-0.12.9-cp310-cp310-manylinux_2_34_x86_64.whl
Size 156.6 kB
Tags CPython 3.10 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
c0432568cdf7cd36868f5d9800dfbb840d0ffaf0e8f2df0b42fbcbf83f2353ab
BLAKE2b-256 checksum
How to use checksums
9f2e4d5a60fb0fdde3da36317f4e416e986a3a6a625a4013c00a2b6584497191
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp310-cp310-manylinux_2_34_aarch64.whl

Download URL caio-0.12.9-cp310-cp310-manylinux_2_34_aarch64.whl
Size 160.1 kB
Tags CPython 3.10 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
0b9922e7d5800b9aadafbe8ba956ed095ac37f85e0b38b96c97586e443548ff5
BLAKE2b-256 checksum
How to use checksums
ff517e54415ca0b79dc9d044fcaea3439b5590115ca9a9452ad27e97db5ecc22
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release files / caio-0.12.9-cp310-cp310-macosx_11_0_arm64.whl

Download URL caio-0.12.9-cp310-cp310-macosx_11_0_arm64.whl
Size 42.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
98e88c20217456113ae3021882aa310fab8ae77e54ec62a7c990f1c34a9f62a6
BLAKE2b-256 checksum
How to use checksums
e4ddeb01403e589183dd336d74ae68fc91d52cc100374fd0d38883f47e5a6572
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 26, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.12.9 This release

43 release files

0.9.8

10 release files

0.9.7

10 release files

0.9.6

11 release files

0.9.4

7 release files

0.8.4

10 release files

0.8.3

6 release files

0.8.2

6 release files

0.8.1

9 release files

0.7.0

10 release files

0.6.3

11 release files

0.6.1

9 release files

0.6.0

9 release files

0.5.6

9 release files

0.5.5

9 release files

0.5.3

13 release files

0.5.2

13 release files

0.5.0

13 release files

0.4.0

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.0.4

1 release file

0.0.3

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page