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.8

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.8
File Size Uploaded
caio-0.12.8.tar.gz 83.8 kB Details

Built distributions (wheels)

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

Download URL caio-0.12.8.tar.gz
Size 83.8 kB
Tags Source
SHA-256 checksum
How to use checksums
7a6d2555ec17e0577a082f7574febea4ed00c937742503f016611c8059746c64
BLAKE2b-256 checksum
How to use checksums
07b0851a7d51c4a7f52731044c14d0904239c5ea247a79224c5733e6f8b7df0f
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.8-py3-none-any.whl

Download URL caio-0.12.8-py3-none-any.whl
Size 26.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
03c65a9ddd461042bf46768eb6c6deed4f7fad5153713f9d180025a2a8937a1b
BLAKE2b-256 checksum
How to use checksums
ec0a85161a270e870c65ad51612eb9b2778245e531f606da643cdc2f9f40cc53
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.8-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
8c0feda5f9ed9e1d2ad5e3d54b2cb033d0cf03aea0264e4f6d31aa67870b0e8e
BLAKE2b-256 checksum
How to use checksums
9426d5de0317b417f96a9fbe2f69fc06a182f4723ee3e6a2df911ed656a5d84f
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.8-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
d803ec1092dc641a0c6ad35f17517979ae1be3672597e3fe8452e8a05cf1f580
BLAKE2b-256 checksum
How to use checksums
ab7787015194063c568828b4129607e35080c7cdebb28977d27faffa1a858a1c
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.8-cp315-cp315t-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
0899851abeec98d34bcb40be1e86253bf0a585fdbbb880b2fced55bfa4ca7149
BLAKE2b-256 checksum
How to use checksums
52c001f2ed4de31fe04493466affaa7fdcbad2e3f10c934da4b142429b59b58a
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.8-cp315-cp315t-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
e7bac600b36b7fe171951129fb9ee253d9e3959d82d5a2e332c114ecea08b9d6
BLAKE2b-256 checksum
How to use checksums
3eb396be15c507e84237884b8bf971c7b88d4b608714a5aeafd4ffcadf89f0d2
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.8-cp315-cp315t-macosx_11_0_arm64.whl

Download URL caio-0.12.8-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
652f3def5f7f9206b548b79eb90ace8030ee9226b2cfa890ae94daee0c8ff26d
BLAKE2b-256 checksum
How to use checksums
852ecfa78fdcf199d564f491c57898ebfdc733d806df826601d5dda874e4654f
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.8-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
9c7ed170dfece333c8b82f7f08654d287c18f40f9610cfa5d119fc9b238991a3
BLAKE2b-256 checksum
How to use checksums
716fa65caf23c7e8827bc73c5dc7159b073d106a6ece5e064b7473f911584060
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.8-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
6b95d197802b75866487ebb0fbc240a96ba67bf231457b3c0c173ee1775cfb9b
BLAKE2b-256 checksum
How to use checksums
946369bc7a51f805e7521992ee70c31378edb8f712ddf957a1957a0504ae4f93
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.8-cp315-cp315-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
c1002f997ab23c2c0092fabee492538ece73fba71c952360af8e2a02a0469310
BLAKE2b-256 checksum
How to use checksums
9bc7dcc7e18cf16c36b00be8f96ecc853dd6de1767812836016df1172b8eddae
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.8-cp315-cp315-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
bbb34e5e954c3a390948bdfed0189b6ecd57fd6915d4ad3a9e5a930e4a727b11
BLAKE2b-256 checksum
How to use checksums
25ca9f05e212e3b79d606faa750eec0489cf11947a85f4418e462cdd4cc3df3f
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.8-cp315-cp315-macosx_11_0_arm64.whl

Download URL caio-0.12.8-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
091f2894f7a16b1f83ec1c8d40039a955ec9d9a9b17ff0061ccd5dd0ad8eb0cb
BLAKE2b-256 checksum
How to use checksums
370bb425685876d3655d2c3ac73f2b43dc81a0f8345e06ed1ca713eee4ddd60e
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.8-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
36ae97c59edc428ab82ada50684bd07aabaefa49e2cbe8bc63bedbd85e982120
BLAKE2b-256 checksum
How to use checksums
6e3e3b8af25ba239b180b882dc3bdcb3ceb47bcae140eb752bed3442934904a3
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.8-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
6cf4c36b59222c588ea86aa84b117253a733534a25053ce2a4949a6e8a891e39
BLAKE2b-256 checksum
How to use checksums
a3281ed6f85389ff9c186baa5ebe6e49946f34c843291d3f4c52913474611a21
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.8-cp314-cp314t-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
7a0d39ad72348f4587c26483f307d70e23e0d66055186b06327da06e904d8cb4
BLAKE2b-256 checksum
How to use checksums
bb598b36301ec09bc0f7ed19e749d58537bab00bc347eae5705d54b4e5c50e0c
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.8-cp314-cp314t-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
aaf7e8f1e4a46d18da8f2dd1f5fadd0a6469b256dfee585a8187fb5e6670dd39
BLAKE2b-256 checksum
How to use checksums
2eaf76449d5ddf1e11fc408ec2cad565e061d2681672e9ef03bdd98409f35191
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.8-cp314-cp314t-macosx_11_0_arm64.whl

Download URL caio-0.12.8-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
1e0b4d7b5443c0f17700ed712b8f443a5428f0458bc96ebe3c1ca6041385dc0b
BLAKE2b-256 checksum
How to use checksums
cec258fdc13a2e98b42bd0ce52262d6b8685d144c1e59924b3cabf98c0da9307
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.8-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
8eab79f0550ba230e7ada18934a28d421d7d620a29728b145a3114da986f014d
BLAKE2b-256 checksum
How to use checksums
d42d3746ac471b2d1c93975de1bf014d3be58dae883662c73d2da1bc4b95e42e
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.8-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
dda1d5c8f57da01fec0854f193b9d8241456eea6631690e7c2b8694a503d07a3
BLAKE2b-256 checksum
How to use checksums
531ee0eff1892a700ce8536934348bc1ed05efe417f3e80b98c15298ce9c71fc
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.8-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
2bb30b5b1fc43f4f357cb4f6a4c273dbb1d276f801a4f81b78a19ac9e29c7b05
BLAKE2b-256 checksum
How to use checksums
2a64c2a0478a733da5c412e518c7b35fb13e62d01ec9ea77b8b7467c2df34935
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.8-cp314-cp314-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
e4520cff39b5177adec5da3ef47c9a286e33a79c5132116650fe62e8e733213d
BLAKE2b-256 checksum
How to use checksums
6ded96ee5ced2b2bb7a59fc9d719cabd0261436c9d2b1664186245e8013a6eac
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.8-cp314-cp314-macosx_26_0_arm64.whl

Download URL caio-0.12.8-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
8bb7dc12a171b91b873f976c0a1dfb1046b87a76ce07bbb9e48365f31c85b19b
BLAKE2b-256 checksum
How to use checksums
4c27cd3c937e639f79837677b8add9f90a19867091b50fe0ebefa0dce3ec886e
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.8-cp313-cp313t-macosx_11_0_arm64.whl

Download URL caio-0.12.8-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
419cafbb5930bfa8ab4609b4ad9fa767d57667c500c702405d67c3dc08c1a134
BLAKE2b-256 checksum
How to use checksums
d8d4737b8e4feabacfe934a7cd731a8e498d5a20ed84ce91786940d946663bf9
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.8-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
29fc6c1178e82d6f9678af6b4b2c5a44a76f617b94d108e30c3385fe1f143b3b
BLAKE2b-256 checksum
How to use checksums
280c0fe19cf45c8cc6723d50de43a4aa601c4eef2b74cf0973d263b774ca9210
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.8-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
7515d8f09fd14f52fdbfa31920fa3b505a4cbdd9ff7fc8c31dbf6c34c1d5e9c1
BLAKE2b-256 checksum
How to use checksums
bb0a36cf996e17837b17a6626dfe9f82307a72d15c4456845b13696279218aab
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.8-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
826cd5675e8c53f5f530f7e74cf9fd4caedd3db5f648c1585517e4113d844ccb
BLAKE2b-256 checksum
How to use checksums
a00c838c2a54421a442043479c3fa540bb06ad4650e6f848652d7fdad9795780
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.8-cp313-cp313-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
8fbaae50ae53e95e3b1cff4c1b766e8f76e7fde6d0cad4aa0e7eff79d1a9e800
BLAKE2b-256 checksum
How to use checksums
765c20276dfff34ab1e9c417ac00c588b45fcfdd3670e552dac900d472a8f495
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.8-cp313-cp313-macosx_10_13_universal2.whl

Download URL caio-0.12.8-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
762e08112872255a3c39e0f5a6d8602a52b3ffd587c8d376c7d73798c0526d4b
BLAKE2b-256 checksum
How to use checksums
c87c8516e4773b014bfe5d67087fb66db4e3ade699abee19b1b4c7ff1aef7908
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.8-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
13b8f6f370f96a9782de2c62c5fb52c5724a0f18f492f84372a5f8b7162e5e9e
BLAKE2b-256 checksum
How to use checksums
fec4c3a1be7f661d201c9c0755d0ec2170df6b46e35bebb100cb41c5236ffb0f
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.8-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
6d41b1d3f2654bc24b958cad5d1447cd2fdbf1583f1079b9d1d19a5cd5ec64da
BLAKE2b-256 checksum
How to use checksums
754c227cada1f9238f01d945ee77e6d8933947738fb3da289533109d0041e6a3
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.8-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
8bdeffe92d1588d555b764c0342e579d86ea2131c109c5a6a53524e399213674
BLAKE2b-256 checksum
How to use checksums
1c11b5d0ebc9af825528e6710f57f99f90f7f0334506dc1156aaab779fe30d87
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.8-cp312-cp312-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
f2b9615a92f8f3c412b71c08db2c918e102e2cc6ebf8f04b71acc32a09430c56
BLAKE2b-256 checksum
How to use checksums
f27a013bee735db3816abbbe98e580fe34a5df107a7b4ca8e3fd6abc5d20a373
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.8-cp312-cp312-macosx_10_13_universal2.whl

Download URL caio-0.12.8-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
de00c5ab37431179ed52d7b389980866fdd547d4a09a49e78b385e3940a1af92
BLAKE2b-256 checksum
How to use checksums
b27cd9824c15211266c5aa489f4dad56de42cb37b5a38cb3b474aa17f75abb01
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.8-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
f4b094b4903ebbc8da95c8cdd8dab1a1812d3d9c5751d0e7791871e4246001fd
BLAKE2b-256 checksum
How to use checksums
0a884473f897de7b07dcf2893de2f2db5ba56b211e02ffafa46c2ac52a8f6370
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.8-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
1e910230561b2200b63d109c7881d1aa6f523c0d4bd3ffa4e94614dc097e2ad9
BLAKE2b-256 checksum
How to use checksums
a52503ea1a010d2268f6b3a3b8ec0acbb43f51c379597ae7c7aca94534ededdb
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.8-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
0a1e77cb272d6f90fe8005dd715c54d3166bef4b1513032082d48530c5db460b
BLAKE2b-256 checksum
How to use checksums
6dc2a34b1609dc638869494e7d60c31bb2f148e48830521beb9d5ec45d2ebc4e
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.8-cp311-cp311-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
f0b5a303df78acd17d089e80b559dfa0ae82fb2a4c0a5034ee0254b851a23173
BLAKE2b-256 checksum
How to use checksums
642921a61819d6a7c027fadc9aebfe2a869a9f9a192028665903bde11dc7b729
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.8-cp311-cp311-macosx_10_9_universal2.whl

Download URL caio-0.12.8-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
2e8dfeeba331a5f9f5843fb91165cafdc402846e5fd5ec4b1cd9d57c444cd43a
BLAKE2b-256 checksum
How to use checksums
fa16a394f9d41575260e49b23c5b77d820540b4da6c5db04c68182202a925a82
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.8-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL caio-0.12.8-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
361c6cf683a8e8f08b91a6678303aa9ad61151392b4f4ab39d55355f4af450b7
BLAKE2b-256 checksum
How to use checksums
86e9963e8a236eb081b0fbde4af50c8d64b7f2b629dfa1fef94f56627ee1db0c
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.8-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL caio-0.12.8-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
8933d93e0c411f19a2b9c6e59327b1d7fddd62abf2e26e7d8ba77d9a33fb863f
BLAKE2b-256 checksum
How to use checksums
737d23e8887c03b8a22e43ce9910d41944c6e6fed76dc07424aeda44b1fd2a63
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.8-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL caio-0.12.8-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
d6cf3ddc7063971c4d8e264a702446b442bd853fe8a57dda40be0418ab7152ba
BLAKE2b-256 checksum
How to use checksums
ddf5928cc7c044ab11084af4446a319a27e855d02933e2b33f76df3026f9581f
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.8-cp310-cp310-manylinux_2_34_aarch64.whl

Download URL caio-0.12.8-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
eb95eb2574b1bcfd7739644fa30bd1a0edc9eb89dc577559642f3dc2cf32ee81
BLAKE2b-256 checksum
How to use checksums
5ebba6c648af345aab3e031bb5718e8f7f4107e1ccf52978fc741f390faccd05
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.8-cp310-cp310-macosx_11_0_arm64.whl

Download URL caio-0.12.8-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
c588d064d3ad8fdeef0b45b1e8330e4dfc9a93617ed5d4b6dab5187520382e43
BLAKE2b-256 checksum
How to use checksums
b065405d112aa6c0e17049a46df421001376bc64fc6ab1ca678916e39ae41fe7
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.8 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