Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Apache Iggy

apache-iggy

discord-badge

Apache Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second.

Installation

Basic Installation

# Using uv in an existing project
uv add apache-iggy

# Using pip
python3 -m venv .venv
source .venv/bin/activate
pip install apache-iggy

Prerequisites

Every installation below compiles the Rust extension, so you'll need:

  • Python 3.10+
  • Rust toolchain: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  • uv: curl -LsSf https://astral.sh/uv/install.sh | sh
  • All checks tooling from CONTRIBUTING.md.
  • Docker

Local Development

IMPORTANT: All commands are supposed to be ran from foreign/python unless it's specified to run in repository's root folder.

  1. Build a project for development

    With uv:

    # Create a venv
    uv venv
    
    # Sync the environment without updating it
    uv sync --frozen --all-extras --no-install-project
    
    # Build the project -- this builds the rust extension into the venv (debug profile) - re-run after any rust change
    uv run --no-sync maturin develop
    

    With pip:

    # Create a venv
    python3 -m venv .venv
    
    # Activate the venv
    source .venv/bin/activate
    
    # Install the dependencies
    pip install -e ".[all]"
    
    # Build the project -- this builds the rust extension into the venv (debug profile) - re-run after any rust change
    maturin develop
    
  2. Run the server to be able to run the tests (this blocks the terminal - run steps 3-5 in a separate one). --fresh deletes local_data/ on every run - drop it if you have existing data you want to keep.

    # run from the repository's root directory
    cargo run --bin iggy-server -- --with-default-root-credentials --fresh
    
  3. Run the tests

    uv:

    uv run --no-sync pytest tests/ -v
    

    pip:

    pytest tests/ -v # make sure iggy-server is running and the venv is activated
    
  4. To update the stubs, after changing the pyo3 API surface, use

    # run from foreign/python
    cargo run --bin stub_gen
    
  5. Before committing, test the pre-commit and pre-push hooks. prek only inspects staged content, so stage your work first:

    git add -A
    prek run # runs pre-commit hooks
    prek run --hook-stage pre-push
    # if a hook modifies files, re-run `git add -A` and `prek run`.
    

    These are some of the essential commands prek is running, so it's recommended to run them manually before running prek / committing / pushing. This list is not exhaustive and other hook failures are possible.

    uv run --no-sync ruff format .
    
    uv run --no-sync ruff check --fix .
    
    cargo fmt --manifest-path Cargo.toml
    
    cargo clippy --manifest-path Cargo.toml --all-targets --all-features -- -D warnings
    
    # run from the repository's root directory
    ./scripts/ci/markdownlint.sh --fix foreign/python/README.md # read the diff after applying this, sometimes it gives unwanted results, e.g. messing up enumerations
    

Client Configuration

IggyClient takes a server address, a TcpConfig, or a QuicConfig:

import asyncio
from datetime import timedelta

from apache_iggy import AutoLogin, IggyClient, TcpConfig, TcpReconnectionConfig


async def main():
    client = IggyClient(
        TcpConfig(
            server_address="127.0.0.1:8090",
            auto_login=AutoLogin.username_password("iggy", "iggy"),
            reconnection=TcpReconnectionConfig(
                enabled=True,
                max_retries=10,
                interval=timedelta(seconds=2),
                reestablish_after=timedelta(seconds=30),
            ),
            heartbeat_interval=timedelta(seconds=5),
            # tls_enabled=True,
            # tls_domain="localhost",
            # tls_ca_file="../../core/certs/iggy_ca_cert.pem",
            # tls_validate_certificate=True,
            # nodelay=True,
        )
    )
    await client.connect()


asyncio.run(main())

IggyClient(...) also accepts a QuicConfig for the QUIC transport; see examples/python/getting-started/producer.py for a config swap example.

Examples

Refer to the examples/python/ directory for usage examples.

Contributing

See CONTRIBUTING.md for contribution guidelines.

License

Licensed under the Apache License 2.0. See LICENSE for details.

Release files for apache-iggy 0.9.0.dev7

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

Source distribution (sdist)

Source distribution for apache-iggy 0.9.0.dev7
File Size Uploaded
apache_iggy-0.9.0.dev7.tar.gz 701.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for apache-iggy 0.9.0.dev7
File
apache_iggy-0.9.0.dev7-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
apache_iggy-0.9.0.dev7-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
apache_iggy-0.9.0.dev7-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
apache_iggy-0.9.0.dev7-cp313-cp313-manylinux_2_34_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.34+ x86-64 Details
apache_iggy-0.9.0.dev7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
apache_iggy-0.9.0.dev7-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
apache_iggy-0.9.0.dev7-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
apache_iggy-0.9.0.dev7-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
apache_iggy-0.9.0.dev7-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
apache_iggy-0.9.0.dev7-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
apache_iggy-0.9.0.dev7-cp312-cp312-manylinux_2_34_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.34+ x86-64 Details
apache_iggy-0.9.0.dev7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
apache_iggy-0.9.0.dev7-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
apache_iggy-0.9.0.dev7-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
apache_iggy-0.9.0.dev7-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
apache_iggy-0.9.0.dev7-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
apache_iggy-0.9.0.dev7-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
apache_iggy-0.9.0.dev7-cp311-cp311-manylinux_2_34_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.34+ x86-64 Details
apache_iggy-0.9.0.dev7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
apache_iggy-0.9.0.dev7-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
apache_iggy-0.9.0.dev7-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
apache_iggy-0.9.0.dev7-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
apache_iggy-0.9.0.dev7-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
apache_iggy-0.9.0.dev7-cp310-cp310-manylinux_2_34_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.34+ x86-64 Details
apache_iggy-0.9.0.dev7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
apache_iggy-0.9.0.dev7-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
apache_iggy-0.9.0.dev7-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 170.7 MB

Release files / apache_iggy-0.9.0.dev7.tar.gz

Download URL apache_iggy-0.9.0.dev7.tar.gz
Size 701.5 kB
Tags Source
SHA-256 checksum
How to use checksums
fa115f9e5a7aa673bb5a3af453ae5b282c00fd6800f78fab5c8202bb6f5c5e73
BLAKE2b-256 checksum
How to use checksums
62bc8feb749893a31fb22937f5f3df8403f26ce2ba0ca30ee559d1d76f11bf18
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp313-cp313-win_amd64.whl

Download URL apache_iggy-0.9.0.dev7-cp313-cp313-win_amd64.whl
Size 5.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
41ea6a6c773e9f69f1c8b382ca48ae0d82ba961220662727253d033ced0602a9
BLAKE2b-256 checksum
How to use checksums
5161c3ab21b2b6bc9d14028439086a4a095c03c34fa3c405aa9a7df07ce5cd7a
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp313-cp313-musllinux_1_2_x86_64.whl
Size 6.9 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bc4f07bc3ea7affc23649c7380a7f6e8f9166cca837ac3ab4b3af5a285ae3fc9
BLAKE2b-256 checksum
How to use checksums
ae8b29f6a35222e78d63759d759f5b077be37a3c6b37dee66616a53cf026ec83
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp313-cp313-musllinux_1_2_aarch64.whl
Size 6.7 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
14722245c278e867ed3002280e7861c37099cf85be2913f3a0105a1fc98ca8c7
BLAKE2b-256 checksum
How to use checksums
8727d229be716223457fcc35924e8375bca8c62f99b3785721441a8026ead06b
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp313-cp313-manylinux_2_34_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp313-cp313-manylinux_2_34_x86_64.whl
Size 6.4 MB
Tags CPython 3.13 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
c3d11686c16180e3103501dca46df06e053879f6785637892e0578f1c329b97c
BLAKE2b-256 checksum
How to use checksums
d10d271095afd008a1d41af9705088ab0dbc15f226563cf992439bd62450ff4f
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
085703dfc4fbabdef9b8e2389454578d0454c5f50beba9496dab68b24e6f8c2e
BLAKE2b-256 checksum
How to use checksums
533ad5de2fc889421dabf4b07048672baaf6d70918410d09d7f57cbb680a59da
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp313-cp313-macosx_11_0_arm64.whl

Download URL apache_iggy-0.9.0.dev7-cp313-cp313-macosx_11_0_arm64.whl
Size 5.8 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e27ba4fed2c52434cbbee82ba807df12623ea68ea05efcca3be5e79260ddb52d
BLAKE2b-256 checksum
How to use checksums
2f7ea506567b603f6158f1007481a44e9fb5b579784a45376429671512e6356a
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp313-cp313-macosx_10_12_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp313-cp313-macosx_10_12_x86_64.whl
Size 6.0 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
81aff70fca2721f8394d4b4b639cf3f797294af0b0c529cf90db16d512f3b83a
BLAKE2b-256 checksum
How to use checksums
795182f6987f68833bddff2d4ecc2992a02f2a22844df07ee8c5b452a3b0030f
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp312-cp312-win_amd64.whl

Download URL apache_iggy-0.9.0.dev7-cp312-cp312-win_amd64.whl
Size 5.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
1f90a4e340f819dce60b3e36fe0477db52798dfa23c27c93baa72256b54fe2fe
BLAKE2b-256 checksum
How to use checksums
006f4d7411e2b84a02f1776291713f8ebc11abe565532c4701cdfaeda510f60e
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp312-cp312-musllinux_1_2_x86_64.whl
Size 6.9 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ff01f1ba75b2786c532102eee321104a5f9e4eb7983be52d43e8d10a3fa1c21a
BLAKE2b-256 checksum
How to use checksums
f8e3733283ddda7cfb55dccc320c30eb6584e4e8962911ed306d81c17c3d17f2
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp312-cp312-musllinux_1_2_aarch64.whl
Size 6.7 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2d1120c5aa42bbff9b6aa449cff5419a3f1688356be53899dfe7f30948863fa7
BLAKE2b-256 checksum
How to use checksums
2c8aed5e2c7723f934c43e091e6a9f4ed98c0066c48e8e13e12ee0cb57306c87
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp312-cp312-manylinux_2_34_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp312-cp312-manylinux_2_34_x86_64.whl
Size 6.4 MB
Tags CPython 3.12 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
1d4b04b14a05a0af8cec69c09b27e54296983c1b11dd56132761b97e67797ec2
BLAKE2b-256 checksum
How to use checksums
c6762abdadcb47438a2603c686a050bc591be3cac611c10898f7956d91b10986
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
10473f0d7460369664438ee3e5eb0d2d8c2c6cf89408f4325d20d2469108e90e
BLAKE2b-256 checksum
How to use checksums
fecd2a395059f42bf17ec9796e76268609ce0e18ceb1bb76735efa11afb30613
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp312-cp312-macosx_11_0_arm64.whl

Download URL apache_iggy-0.9.0.dev7-cp312-cp312-macosx_11_0_arm64.whl
Size 5.8 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7df797d8506b35d3d8d9f8bc78ccc54e74a35d723b386c42788ff4ac82d3a3c2
BLAKE2b-256 checksum
How to use checksums
a90a9826b8b1f764ed2d3fb02a3938726e795b43356ae0631eaefbe1f4bf78cf
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp312-cp312-macosx_10_12_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp312-cp312-macosx_10_12_x86_64.whl
Size 6.0 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
4eca691207638a1a263114dcaf3a8488fbb90015d5636dc437e2df9ac76fb2c3
BLAKE2b-256 checksum
How to use checksums
2a712c2edf76ddc98f53d87e30a61776b9960efd81e8e92746098703eff45698
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp311-cp311-win_amd64.whl

Download URL apache_iggy-0.9.0.dev7-cp311-cp311-win_amd64.whl
Size 5.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f1047773624b715d1dde5b82d864e006069dbb7d7cb9cf10edeaa36ae4ddc7f1
BLAKE2b-256 checksum
How to use checksums
4b14d76be14d5a47d63d4ee36c6e1e1fa060773cbc04adf22125b4a5d65884b8
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp311-cp311-musllinux_1_2_x86_64.whl
Size 6.9 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7b96007f09af6d1ce1485402651b4f98e74d5289893a9371e84ce5063518999c
BLAKE2b-256 checksum
How to use checksums
758448a1aa04146189da34e6cc5083dc8527081707692edeebd4a9d4d4669dfc
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp311-cp311-musllinux_1_2_aarch64.whl
Size 6.7 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f23227818217b0e75a80486e6461525b47d7f85a50270b22c991ce57fcf9b021
BLAKE2b-256 checksum
How to use checksums
14f40426d1003683b7f0cf8a3c824b02501d2418ff9c2046931eee3ae39d709b
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp311-cp311-manylinux_2_34_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp311-cp311-manylinux_2_34_x86_64.whl
Size 6.4 MB
Tags CPython 3.11 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
2b25f45a56b828739206feeb0117a8a9ff36a4e09f64b8c6ebbf41d1d98e682d
BLAKE2b-256 checksum
How to use checksums
adadae80ad30e967514d149d0492d7baa66dfbc93e4dec6e0f8347cd4add3729
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.6 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c95beb6ca022a5745d1d954819773c663370c17e82e963e9c70cb36069f82a95
BLAKE2b-256 checksum
How to use checksums
bfd65ec103ab0a3901bb57911424ef2884fd3b33cfc9a38a812493325cdb23e0
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp311-cp311-macosx_11_0_arm64.whl

Download URL apache_iggy-0.9.0.dev7-cp311-cp311-macosx_11_0_arm64.whl
Size 5.8 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
59303112e19cff3d87b03139db012ccc288a9b3be6d60695cb799113fc56b429
BLAKE2b-256 checksum
How to use checksums
9034fdeab5467a069649655fa84126b74afb7f2c84cebecb2c99d3015c84ca88
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp311-cp311-macosx_10_12_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp311-cp311-macosx_10_12_x86_64.whl
Size 6.0 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
88310a6e84a662b098774d5ff039c66d9e13410a1e3ae693f32e6568c802620d
BLAKE2b-256 checksum
How to use checksums
501b2a3e7b2ecd3ae066cdaac282b5338e1edf75b99b1f5a0d9f43fc0a6ae082
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp310-cp310-musllinux_1_2_x86_64.whl
Size 6.9 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
79405d9c6b9af74c618a6375b4ed9a672577b8adb494b36e18eaccc7a6b43d90
BLAKE2b-256 checksum
How to use checksums
30368956f0748775a2af54a274c27dba88b8cd86e4a453c519b8d30236e955ae
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp310-cp310-musllinux_1_2_aarch64.whl
Size 6.7 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9c0f4267e6a87b4793981876e51746d223639b8ee18476ba23fa08202c012a58
BLAKE2b-256 checksum
How to use checksums
96b80a4864e200a18c07ba373f64b583a85e64c04bed836a434ac9bab6a66235
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp310-cp310-manylinux_2_34_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp310-cp310-manylinux_2_34_x86_64.whl
Size 6.4 MB
Tags CPython 3.10 Linux glibc 2.34+ x86-64
SHA-256 checksum
How to use checksums
fc73ec40ab42a1a5a97592c8892ef48ced365a581d10c643d1fdc0ebf7f49b3f
BLAKE2b-256 checksum
How to use checksums
7bcdbd6a6a1ccef5f90074c4b211c5d0543c21defead7e481ae48f7e9193f0ae
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL apache_iggy-0.9.0.dev7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 6.6 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e22d4273dee97c1a6da16e43871f61d3e06968bada8d3b8f9bb38850b5ab1008
BLAKE2b-256 checksum
How to use checksums
227d2eaad992269d51e38c163225ff9c06f65944e2b2c72ef543c14c5e5e9021
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp310-cp310-macosx_11_0_arm64.whl

Download URL apache_iggy-0.9.0.dev7-cp310-cp310-macosx_11_0_arm64.whl
Size 5.8 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7f5b774b6b23cb38c8873dfe97633acec5c1bc931317a794367ef44ac7597e73
BLAKE2b-256 checksum
How to use checksums
5adabb0de7692235c63c67d09e5966f84b2861c5983e489f97c8bbf210de2c8e
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 7, 2026.

Transparency log

Release files / apache_iggy-0.9.0.dev7-cp310-cp310-macosx_10_12_x86_64.whl

Download URL apache_iggy-0.9.0.dev7-cp310-cp310-macosx_10_12_x86_64.whl
Size 6.0 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
50cea50aaf9667d01799558bf39b6a2ef4374a53fe3594b4996f06e69b29fbf1
BLAKE2b-256 checksum
How to use checksums
c5f78ad1f17af713968f152cc5618ababdc7aadf813dead555381bfe4e5692a0
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 7, 2026.

Transparency log
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