Skip to main content

Kafka integration with asyncio

Project description

|Build status| |Coverage| |Chat on Gitter|

asyncio client for Kafka

AIOKafkaProducer

AIOKafkaProducer is a high-level, asynchronous message producer.

Example of AIOKafkaProducer usage:

from aiokafka import AIOKafkaProducer
import asyncio

async def send_one():
    producer = AIOKafkaProducer(bootstrap_servers='localhost:9092')
    # Get cluster layout and initial topic/partition leadership information
    await producer.start()
    try:
        # Produce message
        await producer.send_and_wait("my_topic", b"Super message")
    finally:
        # Wait for all pending messages to be delivered or expire.
        await producer.stop()

asyncio.run(send_one())

AIOKafkaConsumer

AIOKafkaConsumer is a high-level, asynchronous message consumer. It interacts with the assigned Kafka Group Coordinator node to allow multiple consumers to load balance consumption of topics (requires kafka >= 0.11).

Example of AIOKafkaConsumer usage:

from aiokafka import AIOKafkaConsumer
import asyncio

async def consume():
    consumer = AIOKafkaConsumer(
        'my_topic', 'my_other_topic',
        bootstrap_servers='localhost:9092',
        group_id="my-group")
    # Get cluster layout and join group `my-group`
    await consumer.start()
    try:
        # Consume messages
        async for msg in consumer:
            print("consumed: ", msg.topic, msg.partition, msg.offset,
                  msg.key, msg.value, msg.timestamp)
    finally:
        # Will leave consumer group; perform autocommit if enabled.
        await consumer.stop()

asyncio.run(consume())

Documentation

https://aiokafka.readthedocs.io/

Running tests

Docker is required to run tests. See https://docs.docker.com/engine/installation for installation notes. Also note, that lz4 compression libraries for python will require python-dev package, or python source header files for compilation on Linux. NOTE: You will also need a valid java installation. It’s required for the keytool utility, used to generate ssh keys for some tests.

Setting up tests requirements (assuming you’re within virtualenv on ubuntu 14.04+):

sudo apt-get install -y libkrb5-dev krb5-user
make setup

Running tests with coverage:

make cov

To run tests with a specific version of Kafka (default one is 2.8.1) use KAFKA_VERSION variable:

make cov SCALA_VERSION=2.11 KAFKA_VERSION=0.10.2.1

Test running cheat-sheet:

  • make test FLAGS="-l -x --ff" - run until 1 failure, rerun failed tests first. Great for cleaning up a lot of errors, say after a big refactor.

  • make test FLAGS="-k consumer" - run only the consumer tests.

  • make test FLAGS="-m 'not ssl'" - run tests excluding ssl.

  • make test FLAGS="--no-pull" - do not try to pull new docker image before test run.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiokafka-0.14.0b1.tar.gz (601.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiokafka-0.14.0b1-cp314-cp314-win_amd64.whl (333.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aiokafka-0.14.0b1-cp314-cp314-win32.whl (314.1 kB view details)

Uploaded CPython 3.14Windows x86

aiokafka-0.14.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiokafka-0.14.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiokafka-0.14.0b1-cp314-cp314-macosx_11_0_arm64.whl (349.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiokafka-0.14.0b1-cp314-cp314-macosx_10_15_x86_64.whl (346.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiokafka-0.14.0b1-cp313-cp313-win_amd64.whl (329.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aiokafka-0.14.0b1-cp313-cp313-win32.whl (310.9 kB view details)

Uploaded CPython 3.13Windows x86

aiokafka-0.14.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiokafka-0.14.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiokafka-0.14.0b1-cp313-cp313-macosx_11_0_arm64.whl (348.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiokafka-0.14.0b1-cp313-cp313-macosx_10_13_x86_64.whl (345.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiokafka-0.14.0b1-cp312-cp312-win_amd64.whl (331.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiokafka-0.14.0b1-cp312-cp312-win32.whl (312.2 kB view details)

Uploaded CPython 3.12Windows x86

aiokafka-0.14.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiokafka-0.14.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiokafka-0.14.0b1-cp312-cp312-macosx_11_0_arm64.whl (351.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiokafka-0.14.0b1-cp312-cp312-macosx_10_13_x86_64.whl (348.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiokafka-0.14.0b1-cp311-cp311-win_amd64.whl (331.8 kB view details)

Uploaded CPython 3.11Windows x86-64

aiokafka-0.14.0b1-cp311-cp311-win32.whl (313.4 kB view details)

Uploaded CPython 3.11Windows x86

aiokafka-0.14.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiokafka-0.14.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiokafka-0.14.0b1-cp311-cp311-macosx_11_0_arm64.whl (351.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiokafka-0.14.0b1-cp311-cp311-macosx_10_9_x86_64.whl (348.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiokafka-0.14.0b1-cp310-cp310-win_amd64.whl (331.8 kB view details)

Uploaded CPython 3.10Windows x86-64

aiokafka-0.14.0b1-cp310-cp310-win32.whl (314.7 kB view details)

Uploaded CPython 3.10Windows x86

aiokafka-0.14.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiokafka-0.14.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiokafka-0.14.0b1-cp310-cp310-macosx_11_0_arm64.whl (352.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiokafka-0.14.0b1-cp310-cp310-macosx_10_9_x86_64.whl (348.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file aiokafka-0.14.0b1.tar.gz.

File metadata

  • Download URL: aiokafka-0.14.0b1.tar.gz
  • Upload date:
  • Size: 601.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1.tar.gz
Algorithm Hash digest
SHA256 c227f6c2a321b262ecfa03910e9dcd348edc2eb91412c6cc9b8ba78c8d4b07f1
MD5 57b82f418035e31a0ab99ade601153ce
BLAKE2b-256 6e194454643ec7451492993ac146ba02175b07cbd78ea473071fe2e27a4fe272

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1.tar.gz:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 333.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 43f5efaee9d58e2d4c63b34a316eb7b1dc106c1cf5d27bfc7c0963bfbaec4332
MD5 9f9957e136bd931963882b41de3ebbb2
BLAKE2b-256 af125f0e208e88baa67e01c56fbe3e42f2d1a9c124395619a1158a126515abb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp314-cp314-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 314.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7b3a97f1f5f4062ba634c6f1a3e6350f7429506ebdca676c4abcf390f0678b8c
MD5 1d70b4d5769fe18cb8f4ca34d374a322
BLAKE2b-256 aa9b29329cbe65e434c72bc8b39904f638f02c428b56dc65135e9563bd6c95f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp314-cp314-win32.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64f20cfef3b33cf8f7010ad4ba4e2489a9ca4587d71e72017ed73cae1a119f74
MD5 23ec037d03c7f28b5b820c0c987be6ac
BLAKE2b-256 498f47fe4d3821405c179e442089e63cd348696f7107d738362287b89c38324a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93dfeb4ea63bce34de51a25bf960f4d32a41583c27967be582e8250f94d1f753
MD5 0665991b33230e4c5e62febd87e2a53c
BLAKE2b-256 67d1652ae99ce4741d6ebbea1582d88c7c66117a94278f60e4f4e75018f4597e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2fdbc8251958e259116b153a0b5484fdee835b7d8ed17473097cfef02410650
MD5 8324716377ccb4a36d05a33ab55d5258
BLAKE2b-256 86653418de05bec3c6a4ace944484735a1a3938be641ef7b95dd407d5fc22769

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 958316545b788059bb9ae1fdec0ab95e78f4153b128f2aa3c3f909c39040dda8
MD5 bb3a829d65c774c0dfe1ce2aa97c7896
BLAKE2b-256 7f7be6dbc265561bbeb32d1a37151894e52b5645a17534cd6b36719ecf8f08cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 329.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2985f562643653090b2aa16bf7f6dc8c75e985db0c5add7eff405dd0c90e225a
MD5 8011ce2091eeb9ce584ade87140907f1
BLAKE2b-256 71d3cfb587487916a16260e32a55d0f6d93bdcbe0e2adf7288b22a39aea4f9d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 310.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 67eb6ca85aecd160bfaea3c18e1e765bf2c72a7a5a6cb14f42f4394e7d711970
MD5 10f333d136adceb49410cb11048b15d9
BLAKE2b-256 88318ca5208985f2fe4e30ed8049d5038404279a1af0023908f92e041ba409ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp313-cp313-win32.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e307e32eab4a709e9f54a045a60f31289a6e9320ccc992bb862aa32e606f2dc
MD5 7dcebb24677d2b52ced84dbfb6f6fea8
BLAKE2b-256 d5c5b6b6346fd0ab54ce8b32a9fd8199ea244dac9e3e0123c8fc398e8edcf309

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ad8e4cf0b5fb5bcc39e3ded554e0fc1d7cab03020324512245d509d8e1c3bfb
MD5 a14767cf93154e3fcd18814e21fb2d7b
BLAKE2b-256 c1e1c5b1f49ceee20993e6a8cc4915854bf2dab4ea01215d988628c61f42f325

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b90cbfaf903463731b1ab5b63ca1d6af91bd6bd05327db2ce126dd267a938e28
MD5 9cea188b339b5bbe25d3161cccccd2f2
BLAKE2b-256 97d3dcf6891ce4fa9ed2dd47ecdc3077f5c0072bd79077f46c29dcb4fe076f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 970e7d12e1dfc1eb6aae91e1345875ed482fd12469b821521fa9ec7b3c03adfe
MD5 28a3c90daa271bbcfa1469a0189878d1
BLAKE2b-256 15c509f2bb641bb1d19448e3e12b2ad39ee6532ec8c084dc6ad14db0bedda14e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 331.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 100523c6c8df114cd52db8d9bc461d10cbd2f2542c81cf76aabff623160e39a7
MD5 b0a8483c2addf527626d375fbd48543e
BLAKE2b-256 a47077426716c17ef824b4064e39f3ce25b27ad146083925f4e324810bd003cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 312.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8fd06d0978b12bdc54cdff930d2ba3be14cd5a6761d5c9453f1b5def8e323df9
MD5 b66e1bf78a2e27eda0971e9e12c54b05
BLAKE2b-256 48495a231e5d569a7988381dba76809140b1485bee861a8895c5795ae0f1b660

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp312-cp312-win32.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8be778015d6f83f93bc8645268915a8275a8961d5f8549be8f1e85fd023d884b
MD5 e168249a5c1fdb81c6a8acb584bd52c8
BLAKE2b-256 d83f2aeea27ea2308e71f9e939412f1198c966d294810bcf1f22b260121bdfa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b053b4a63a8f5d1ed91fc0ee549c9a00d3be2cc049a2e8cd3b72d085658f8623
MD5 0d354e561b6bfa0eaf1e08ada87a4a1a
BLAKE2b-256 8e491b475818b33213673cc57f1be93633cbe37b01a135b51ea5d1bc84053bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88a81f9a5df151cc14a81298108cb71c57e12223c2d2c48a03970064fae2744f
MD5 43ce6df32dcd9cd8747d9df8eb0de374
BLAKE2b-256 d2a1450721ee2a86ef413993b14e5c8ad9afd1cfe8d818687dfc94c21fb96a93

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 85d7d49049ccedc498460204369dfde0d7e4fbe02be5bd1ced7095d17a0016d1
MD5 e3af48b9ba945f5d12d2661051798df9
BLAKE2b-256 4eac5d1e3113aca42591ef1bcb9245ca4528fff8808d3e865ed01edf31c517a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 331.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fada0cb90edece1f7eb1dd040c313052f0791f8e231a463fc9121227bfd3dec0
MD5 79ba2e846b5bbb21547575a782779458
BLAKE2b-256 e1f99df7f1025901d91750ee80628f34983b05a5e5c65d7ed99c9ead3ec57bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 313.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 abc8215eceed8172059dd07a971d4ea0ab8fae67535b2dce3cbe8757b73cfca5
MD5 218c2db3347c141192031369f97c54b6
BLAKE2b-256 f2dcb2c9053f075a0ee740320d61c6137dec1b3204d9bbf4beab7abf2d7fe6a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp311-cp311-win32.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60ade139021758b090b9d5f7a7360554971ec28b90fc4f0cb0408b25d20a5005
MD5 bf4f0c694959355441e6f5d018fe09cc
BLAKE2b-256 892ad1ebc1e0284cb0c7bf8c9f3c5c3ba5fb1a6f9df2233ea0cde4f06f697651

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81324fc6cf4d1365bdfc53ac21cf1675adb84bc03bf4c58c655f10f3a8f7b078
MD5 60cdb4dd1057fa5492fab9928361bc01
BLAKE2b-256 0c404ffe1dd8513d8304abcc649c97d02a3d630655ccae854ff996de80a44efb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1ba2b5a67b8cb1dd542e01439ae6b2b1cc4bc9e22d442066446d736a4e6f3c3
MD5 c2f3f537ab02c5a39ec6fb810b13642d
BLAKE2b-256 869c06d7f20ec4537bfc188381b247f401de8aef334fa31bfd3328d167502451

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f10a09e848b5938650ef9aeec298e2d6d1b5a1aaad30665d5bab7ae5f46c101d
MD5 78ba8c74eef0b68918b03fbcd11e2735
BLAKE2b-256 c400a399bcdde5973beab3c453bd8a670a935e7f74b40294fe51046ea0fcfa26

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 331.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24a50c8ec23f4f0fba44af635019f0c13c69927b858364d409ebf7ec51ed0a7c
MD5 9dfe0101e9c2c29529ac767e9cc877c8
BLAKE2b-256 82694b9012b63ef8e92b3ba4bac76722c863b59cb4b977e43bb81143a13caff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0b1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 314.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiokafka-0.14.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6684d478955d53fd1eadc2badaff08014976a4dee5f76fd952a3fbb9d10a0ab2
MD5 2162ac142f55cf51db1d59da95fe9f4c
BLAKE2b-256 55f2f30b8dcf27ce56c70636f29ac9e72967fec8362712f1c877f97747ac0f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp310-cp310-win32.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c08f45905e57b2376a0d791406efefcb44ca348f10aca9305f9b9bc3bb094969
MD5 32021a9bf195ce7862d1d26c551a324e
BLAKE2b-256 6d0f856e9ac3d435a1c4ca301a7f9ac1f19730ce6dd5a81c67175f13ceb90876

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5c094df779c83cb7b06c6cd3dd4d44cf74a5cd495d859f2e86afd570cefba81
MD5 53a134a8377f5602f248d3a54b07c654
BLAKE2b-256 f241761ec843b85d5daee21f1cf0e4fa797cf903b9add8f9072c08ac73ad0c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46471da28d2f42cca365207bd1e4ec4311f0f57c30325963ab36cb2e58c23ee9
MD5 f72ad76e2d71bbbd05dbbe9aa15c9632
BLAKE2b-256 d2d66a4d6677fbb7f3747976da3b99644873d23920152236c0fea911af830bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiokafka-0.14.0b1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d77b6931a344111a0192f4725a9ba285072f7c46994bdbf2eb79d865cd78ed4
MD5 e87115bb65ede0706be9c86dea5f62bf
BLAKE2b-256 6e52a8545bcdd041a85da43ed0a9d82ea9faf28491945509e457fd0bc5b2c290

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0b1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on aio-libs/aiokafka

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page