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

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.7
File Size Uploaded
caio-0.12.7.tar.gz 83.7 kB Details

Built distributions (wheels)

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

Total release size: 5.8 MB

Release files / caio-0.12.7.tar.gz

Download URL caio-0.12.7.tar.gz
Size 83.7 kB
Tags Source
SHA-256 checksum
How to use checksums
b74b5647feaf5e80a0ec5956a68db2bb215858ff88f70435d3793902738cf7bd
BLAKE2b-256 checksum
How to use checksums
3be01e5dda3229b28414ce89f8e4a0f23604d80f0036a46c571965575142b719
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.7-py3-none-any.whl

Download URL caio-0.12.7-py3-none-any.whl
Size 26.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
433425bf64176579545402fe7b06c8c3b4e511d9b42eaa3f00f846a5b595ab6f
BLAKE2b-256 checksum
How to use checksums
92d5202d6960a280d90ff3bb93063f08e3bd84bd8b11b6d9385ae060834bbb28
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.7-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 182.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
509c8b907ed476640d2090f408e0bfff3e8ed54b0263675f453b6735d3e6294c
BLAKE2b-256 checksum
How to use checksums
0e95a8d369716e5416d2ee61aa0ca3aecab72a10c19e8fb8d143df60b7a1e379
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.7-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 184.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
01b3f82737209de4b7c7fc4cdf31cd1552dde3d9f0ca28702ed8c0c73e69976b
BLAKE2b-256 checksum
How to use checksums
9751b8044a19a571ded4279e612e429dbbf842913c618cb4bb21432686e5df13
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.7-cp315-cp315t-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp315-cp315t-manylinux_2_34_x86_64.whl
Size 182.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
f1c541c55a32bc3ed3992fa90898da30dfbbbcc5c18fc380177e227007c7ab2e
BLAKE2b-256 checksum
How to use checksums
3d33559c6196c4601f4fe376fb3d02f17a82d209dac1104ff6f47deebd12e205
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.7-cp315-cp315t-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp315-cp315t-manylinux_2_34_aarch64.whl
Size 186.3 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
1680692b2c76ee0642a1576c9b047bb71f825913021e2efcaef744fff21cc258
BLAKE2b-256 checksum
How to use checksums
9c4ddd35adcd3b4c53299d078feac9edefced3a4920c8daca0c1ae9e7a2ee95e
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.7-cp315-cp315t-macosx_11_0_arm64.whl

Download URL caio-0.12.7-cp315-cp315t-macosx_11_0_arm64.whl
Size 42.6 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e843e6453b8f08b53f12eb5e5f675f7330f2a6bca7a00f1e99513552a0fbac20
BLAKE2b-256 checksum
How to use checksums
0ab25c8c64f6481f0177e837c49d669685cfb35008207bfc376e46e10b48e00e
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.7-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp315-cp315-musllinux_1_2_x86_64.whl
Size 162.4 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
57740986945900044fc674668490913064dd108ba139fca295d41e06b4ed127c
BLAKE2b-256 checksum
How to use checksums
a6c2bcca180f8fb81833d5cf56cb06a0d06a3cc98c135fdfe36cfb1e038204c5
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.7-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp315-cp315-musllinux_1_2_aarch64.whl
Size 163.4 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d0238257f73f76b8731f88733ec37b0c51a889fd91ccf53e4cbc4178bf504e6f
BLAKE2b-256 checksum
How to use checksums
b2efacf843dfb775b811ac8a3684d48e747967d1392ad5ada06b8a638db8c381
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.7-cp315-cp315-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp315-cp315-manylinux_2_34_x86_64.whl
Size 162.8 kB
Tags CPython 3.15 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
66fd58e51ed2662659236363cabdf0d092908f850bdf161f96aabafc202e20fa
BLAKE2b-256 checksum
How to use checksums
1c02b7185913d34554c48945d04f5d976809f4fb7b4333ab5b3e3492dd6864f6
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.7-cp315-cp315-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp315-cp315-manylinux_2_34_aarch64.whl
Size 165.7 kB
Tags CPython 3.15 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
5e41f1b6cd5e2c6c711e1ef89088b0d24c94a3cc16b33d754c621d9023960565
BLAKE2b-256 checksum
How to use checksums
6e24a9180bcc86923f3200050f6aa025bff1757ed00f6e0dd91714643f9fd51e
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.7-cp315-cp315-macosx_11_0_arm64.whl

Download URL caio-0.12.7-cp315-cp315-macosx_11_0_arm64.whl
Size 41.9 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3afe3e88a31087248d13f1a3ecf425147bdbd0f5a2bb871916441dd53ae2d1cc
BLAKE2b-256 checksum
How to use checksums
087a6cf96aa7a6a8db3e783cbffaad4a749a622d5cabe07301600f0daabdb264
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.7-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 181.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8e800503c1e3984eb7d08b23eacddd9fc3f5870fd72f8dacd6514896a6f10a78
BLAKE2b-256 checksum
How to use checksums
2e90f7d0f41fd33bf34bb797f8ae76afac45d6eca2c76035760af0052cf1a338
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.7-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 183.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a1b8999df9ce2596cd989a887a1c1cf8e14567d0bef9530f76e4304cbd902367
BLAKE2b-256 checksum
How to use checksums
24a91da04e767174705f826ba948fc3e302d3f9ba15f1e1a772666bdc5a98bc5
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.7-cp314-cp314t-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp314-cp314t-manylinux_2_34_x86_64.whl
Size 181.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
3fdfd27119698bf8b9cf5187763b22b65a65f2aa76616285bfcea086dd9823a2
BLAKE2b-256 checksum
How to use checksums
a383eb9ec8c4a7f12407a160289d0cd54ed26d87624327f2e412ea64ab576384
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.7-cp314-cp314t-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp314-cp314t-manylinux_2_34_aarch64.whl
Size 185.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
df07a8c01c174a23c22d41c87001fc9d6ae9c22732c1be18c03b77133f0ca150
BLAKE2b-256 checksum
How to use checksums
d05cd2de82037446001c45d16f9bed98d093033bb6f290d15c54d382efca2d20
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.7-cp314-cp314t-macosx_11_0_arm64.whl

Download URL caio-0.12.7-cp314-cp314t-macosx_11_0_arm64.whl
Size 42.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d6c7b58c9a7843526f84f45cfb9d0c8121e44f33c09f70d8abb3e90832261de0
BLAKE2b-256 checksum
How to use checksums
d3a92684f43775383a738e859fa456b886f0c513a5cf7a8a9f7b785fae05b81b
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.7-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp314-cp314-musllinux_1_2_x86_64.whl
Size 161.4 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6dff807037df59e82a1d4c9bd12ba68d369c088354c48f4c33dad8233759ca96
BLAKE2b-256 checksum
How to use checksums
2affcc33766c459215d32e33f2848fd7796e1d4eea7fe642616d185b4f5f5b7e
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.7-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp314-cp314-musllinux_1_2_aarch64.whl
Size 162.2 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c09c0cdfb021356327f74495beea501829639cd4f3914a3a85503b9fd6717ec3
BLAKE2b-256 checksum
How to use checksums
16e26a5d3d03f42cd311907a78ea29a6636fb5b0ef769e60b079963bff158372
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.7-cp314-cp314-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp314-cp314-manylinux_2_34_x86_64.whl
Size 161.8 kB
Tags CPython 3.14 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
271a1cb641c556e8c66ca48f054907eca5c1864bf7b11cd9fd7124d5e9cdda98
BLAKE2b-256 checksum
How to use checksums
ff624073b288ddd7365dc023c647c4ed97b4e016421829492be430fb2b4c779e
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.7-cp314-cp314-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp314-cp314-manylinux_2_34_aarch64.whl
Size 164.6 kB
Tags CPython 3.14 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
2b066869507d807a8b04e930f305214ecf1b54d977fd947651374a1508408f2a
BLAKE2b-256 checksum
How to use checksums
46c992c871613630d27ca80db0d050943dbb30e26c13db36d296f0d1a9864d5f
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.7-cp314-cp314-macosx_26_0_arm64.whl

Download URL caio-0.12.7-cp314-cp314-macosx_26_0_arm64.whl
Size 41.9 kB
Tags CPython 3.14 macOS 26.0+ ARM64
SHA-256 checksum
How to use checksums
0e27f923bbdadde8e61be21d62db517d95dd6542e966c1701160e3273691da67
BLAKE2b-256 checksum
How to use checksums
b6e67876c280b7379faba90d663451129ea477b0159e91f44f6c18d2f12d240e
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.7-cp313-cp313t-macosx_11_0_arm64.whl

Download URL caio-0.12.7-cp313-cp313t-macosx_11_0_arm64.whl
Size 42.6 kB
Tags CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ee84901b2ab2906d955d62a5eb4adfb13cf0e2b48d7d279925d91b0066c86ba2
BLAKE2b-256 checksum
How to use checksums
0e97cdcfeefb556d3913a3333288b667ea194671d5257f1fb2c567a3d6c8ea7c
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.7-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp313-cp313-musllinux_1_2_x86_64.whl
Size 161.3 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3d739714acd2a7e9d3b1fd75d257cd06db05bf779305406ce9ab9e5ea1413bb9
BLAKE2b-256 checksum
How to use checksums
cf333150f26648c7bedc05df527ab2e1e5aca94acacc47b56203d9f89a48c4b1
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.7-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp313-cp313-musllinux_1_2_aarch64.whl
Size 161.5 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
076d0389f8df45233520cccb66a94fe460d1465c452f590848a7a313b96f1688
BLAKE2b-256 checksum
How to use checksums
44a42e764a1b4cf77f00fe0852b463cb58532e5a5f632b20147ae0b7c86c865c
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.7-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp313-cp313-manylinux_2_34_x86_64.whl
Size 161.8 kB
Tags CPython 3.13 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
8ab65034b280b08683548a511ba2a55eee3ea5843504daa460156e91bbad1596
BLAKE2b-256 checksum
How to use checksums
0dac40ff12b515df83e4e1e9e49e23431a2e2cbd4fd6c4a21ee39e1f085d38af
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.7-cp313-cp313-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp313-cp313-manylinux_2_34_aarch64.whl
Size 164.1 kB
Tags CPython 3.13 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
451a9919e459daa47986d5b960232dd61a0e494c7370158a4f383d4fe67397ef
BLAKE2b-256 checksum
How to use checksums
0e4ac1284805f628a5fec1f8345c7552607fbbd132123fe4e081a7e561e77bf6
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.7-cp313-cp313-macosx_10_13_universal2.whl

Download URL caio-0.12.7-cp313-cp313-macosx_10_13_universal2.whl
Size 48.8 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
4f6eec69994d626a855fdec39b0e02050a27f452ef06febb75fa3e2d11a77c28
BLAKE2b-256 checksum
How to use checksums
a66bf804d00ca69f32712a418418f878329ca825d042bc3216dbcf85143d6108
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.7-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp312-cp312-musllinux_1_2_x86_64.whl
Size 161.2 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
00ecc12ffb042fa623090c1c55ed7384a86d784808d292b3e6f3a9a5e9c6e7f4
BLAKE2b-256 checksum
How to use checksums
a6eb36ba59bd8fdc6d5acdb0439da54380e0a70f1f7af7285434bd631df1cbb4
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.7-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp312-cp312-musllinux_1_2_aarch64.whl
Size 161.4 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
99e319d815e93c0d0c3300da86560b8489f985ae64bbca58876c7bece26ada05
BLAKE2b-256 checksum
How to use checksums
fc616ba0d95d91130a4846a1555cf0201ab2eca4e96c31bbc6c2f9ac820b27fc
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.7-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp312-cp312-manylinux_2_34_x86_64.whl
Size 161.6 kB
Tags CPython 3.12 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
986eacf87fc9707e401a4c8a80995c090af4d8ebd2a400187957fe73dc5f155f
BLAKE2b-256 checksum
How to use checksums
9483241d9b204607df0640e1b6eaceaa58031704314d295517aa003d2ce9adfb
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.7-cp312-cp312-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp312-cp312-manylinux_2_34_aarch64.whl
Size 163.9 kB
Tags CPython 3.12 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
d69df773df00d89da9ac15a9c87582f01b85b3b464e2f8982fb6ed7fd59ddd51
BLAKE2b-256 checksum
How to use checksums
f8a164c7df6d3d469ae916ceb617f957d8a5be3cd7ee8ea29dead4e2cb7497ac
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.7-cp312-cp312-macosx_10_13_universal2.whl

Download URL caio-0.12.7-cp312-cp312-macosx_10_13_universal2.whl
Size 48.8 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
45227b707fbbbfe00561cd0a96ec480bec6c3bcc0e279fbf7244d4688647d708
BLAKE2b-256 checksum
How to use checksums
fbee98fe5b27775970f697728e9360ac4f9f752f29069270bed8c38a531fc197
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.7-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp311-cp311-musllinux_1_2_x86_64.whl
Size 158.0 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b4353045e4023166508bf01969aa49657ae6d02fe595dade1cb29139a10c7ac3
BLAKE2b-256 checksum
How to use checksums
cbec0f3e9da61a172ab98e0a722415f64bae3d552639c3ba787de277fb60c99e
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.7-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp311-cp311-musllinux_1_2_aarch64.whl
Size 159.6 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
35b7d2e8832323b4c005957580d6c783ec432b0b1de271d989008a49829f3e5a
BLAKE2b-256 checksum
How to use checksums
1274dda985ab2f2830231a36828f038a145c2040b3f9575a5d509d6bffc9fd7d
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.7-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp311-cp311-manylinux_2_34_x86_64.whl
Size 158.3 kB
Tags CPython 3.11 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
7d6791cac44720b2e2761c708e5bc70f8184a06cf20ceed5fd54c81ea87a54ee
BLAKE2b-256 checksum
How to use checksums
29fd6e9f521aafe3e946fd82dce0e91be1d25ac179f293f8fba975d9ac760b2a
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.7-cp311-cp311-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp311-cp311-manylinux_2_34_aarch64.whl
Size 162.0 kB
Tags CPython 3.11 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
cfbec0955e997a4d4aea92a913488a34bcd1384504e9ec7c33d1d1f1599bf699
BLAKE2b-256 checksum
How to use checksums
1d6c0ab55f9b2a6505a2b46ee22bc5984594a9e57fe72131534c636cba19d099
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.7-cp311-cp311-macosx_10_9_universal2.whl

Download URL caio-0.12.7-cp311-cp311-macosx_10_9_universal2.whl
Size 48.7 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
b6fc3b80faaa1c8735ff9f7ba5a21831ce78118ead8b63dc75a337a2f402eeba
BLAKE2b-256 checksum
How to use checksums
9ddcaa45f35afb40f5f2f3a81b6fa2cf81e29d7f1513fef9dfe0c28d5a8a9309
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.7-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL caio-0.12.7-cp310-cp310-musllinux_1_2_x86_64.whl
Size 155.6 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b2853b749835502f9afe891c94eeccb8465c2669d826c9d0dda93ca8397989ec
BLAKE2b-256 checksum
How to use checksums
e15ab5aeb41a7ad5c6206eeb8c68583ac926a6e3942868c5eef9b921fe660314
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.7-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL caio-0.12.7-cp310-cp310-musllinux_1_2_aarch64.whl
Size 157.0 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8b723d3d40a91205501cde694c6db556415949e27d303be3b6b6a1f44b645b14
BLAKE2b-256 checksum
How to use checksums
98010c82aca2cba4113a848e8551160fc5c7485f2dd6792dd0d042076cfb228c
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.7-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL caio-0.12.7-cp310-cp310-manylinux_2_34_x86_64.whl
Size 155.9 kB
Tags CPython 3.10 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
854f96e5485c0bd2302bff10b878c09752aec9ea0f6f4992a06bc18b06ae098c
BLAKE2b-256 checksum
How to use checksums
8b787816a6e5117745ef78c915ba41ae8412045405f11444ef894a65430586fa
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.7-cp310-cp310-manylinux_2_34_aarch64.whl

Download URL caio-0.12.7-cp310-cp310-manylinux_2_34_aarch64.whl
Size 159.4 kB
Tags CPython 3.10 Linux glibc 2.34+ ARM64
SHA-256 checksum
How to use checksums
03b86e55f460cd5bb494603cf347d011a919537c1a75277bee5b7988ef34197f
BLAKE2b-256 checksum
How to use checksums
e1039c796b7bd2e45caaf3539a944cc52130724d6724e7cd02a5f2ca7b8bcadd
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.7-cp310-cp310-macosx_11_0_arm64.whl

Download URL caio-0.12.7-cp310-cp310-macosx_11_0_arm64.whl
Size 41.8 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b454b79a5c76720d13dbbd75a7c0411301a3edebf94ae1542f451246a610c453
BLAKE2b-256 checksum
How to use checksums
78b88024a0ea2d210a89ff3c971490e46e91bad4bf2043f7bd8f4b0cdf8a4fda
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.7 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