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.0.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.0-cp314-cp314-win_amd64.whl (333.3 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

aiokafka-0.14.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (349.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

aiokafka-0.14.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (348.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

aiokafka-0.14.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (351.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

aiokafka-0.14.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (351.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

aiokafka-0.14.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (352.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiokafka-0.14.0-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.0.tar.gz.

File metadata

  • Download URL: aiokafka-0.14.0.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.0.tar.gz
Algorithm Hash digest
SHA256 8ffdc945798ba4d3d132b705d4244d0a1f493925efb57c637a2ca88ee82794e1
MD5 7b126e756f5df4ba404016db06918e6f
BLAKE2b-256 895fdfc1180fd22d1acdc91949ec36e97199c43742dacb057cb8efed3679ed04

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0.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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aa385039aa9b235359319bbdcf48c9c86a75d81c9c547d645056d00361238903
MD5 52fc590b02fbbace9794b27d11f3f32a
BLAKE2b-256 fa18fb46c65f758900c71d0f1c73b7802720f99cabcb1f4a11676573f9bc1b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 128127eb96dab98150b636bb5f480c80e15f02f82a118eec206a521c8cf7cf7c
MD5 a721dea52b97d7246a0f3ba0e99ebac5
BLAKE2b-256 d6a10af8a37849a4108ae227f46c4c62f6beab31863cf66ba318fb73b0be5b26

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cd651e1f56571baae306fdd0b5509047ab9625797a24cd75902e139c5a20318
MD5 38598a16beb710c132b3f34a2be20365
BLAKE2b-256 68c49841118a2157e913e8ebfbc0a2b58f7b60f1f7202040c3e1df8925ed1184

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 201e38ecc595f9f65a945f1ef9085157ddf28f25cd2e482fd9efa1fcf4638213
MD5 e3ee9151bea94b80bac09e5632245c37
BLAKE2b-256 577a160516944ea0e0f68ea78e38f944c52f5248c7c7df26cba22a40b9f25709

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e2392360c370b1ba6564c57d2889e154ecdb43157a8f7b7d7afe5e3c02fcc1a
MD5 5dd0b0967a3cb3cad366b2ce548baae1
BLAKE2b-256 49dfda314966b7f3c3117bd78b082563cb03dbe3007848cb8f4b0932faf390a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d70615d1530ad19d0c4da8d87abaec0a12b9fdaabffdcd4e400efa0c50ef80c
MD5 977ee727060873441c212f24ef1fe9e5
BLAKE2b-256 509d984803315fe2b883ea6e08b1d9c8a752bd5c16e966d8714bacc67c72c417

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d6fa16bef3544be87bd1a7a8317b9d85e3da59f3202326d9ff22735ed052746e
MD5 0712190abdd1be3f94ca22d113654ad4
BLAKE2b-256 c4e552eab8f8515d23da7b5d90e2c5ba10eab9494a0314f749e3f73e003f4a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a128e213cbc2bce0ea3db65a68920e52cebeeb8209bf001ac7aa022a8bd54d7d
MD5 1bfa0e3a5193afebd3c52d623cbb38e1
BLAKE2b-256 b359849aba75cff93277bf6bf8b630de79e902949ff7ec48e4b12a64e6e32cae

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75e4a003502c9c3b5c705fa7c00d634ba146bf38fa5d525b80bb6ff6e3e779fe
MD5 c168fa2477133e9581f6bf0ae76f767e
BLAKE2b-256 9d7f3b89fbd0a3be9edfd5b51e20bb5cd695c851219b63c501c051cf84367fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aad4a575a506e7784e25e430f27026fe2f4378560b21b7f4e8c9a54f0d06eaee
MD5 b088a6693b1939ee8f90e074726928cb
BLAKE2b-256 b28e0c4c270786dac79f3fca74c6166c3a25b61b0d26132be0d69f0d7f206f0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32a8e91d88cf3ccf0778927715610d6579888c5f4748db4c2022cda25d628a48
MD5 d6eed52bd0c06e24dff5beae93986412
BLAKE2b-256 7fd1fc266d9f4ffba4f197356c6ffdfbb0fe32e7cb874e240f299935d058ac06

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 db16e43fac4c1c5006131046c1bf370c580d6ac4495a10ac7778245710943179
MD5 8374518ed6c92d67a8e4c888e718ed06
BLAKE2b-256 30b0c9384541b2e4cc52a16402fc53fb9d44af0d78d37954cf8c7271c376ad47

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcf3a8f6592d73f45965ca0750bfdfccf2555c8625358175c92f75f2cce1261a
MD5 df81e1b24c0b489e2a4bc950b0cda2cd
BLAKE2b-256 a3fb7802a0ed69200e3e8e8791df06bd6daf9b00523839d045662de4ff061b18

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1086b470f6c452471603a2d9c8d6933739230c75758d777d8d113ff8112bad68
MD5 564d505f56dc8b2ae3b9c26f7f661153
BLAKE2b-256 8d0aa45320778385142299a7fc3ae402152ec1f383537130b8aa8e8587742fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 219d2dc66b97b1aaea100697c928024b6a0348b7baa370b824900054bf86916e
MD5 5a9bea6f12db088ea74367816437bc82
BLAKE2b-256 8878322f797b9593a4cc8afd647342fa66b9ad732ee55098e5e084188c6202aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be517b9b9513eba43ba19961dd770a6e26d08325743093feb47182770d235dd9
MD5 da6664716a6a9ca5b0c2f4b8dac598b9
BLAKE2b-256 264e5c0aa8db717fff0ffb8f3e16deece8f98ded6ca17c6a543b6b20cc9a7f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4f211d9e03a1fc83871a37eefcf307bc0943ee99adae25aa39bd1722e70747b
MD5 825c6cf0f9d6653359a92f00d9157605
BLAKE2b-256 a4107297589aac95654596af13301b31da2c9502c80e7e308530ee7a9bd5b9f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 284a90d617584d7e42688a181aaa8c2a909d9c658ab9b69c6cf92f4df5c4b320
MD5 79edbbc8e78931b1267df55fcb8ad2c2
BLAKE2b-256 f99d3441db94829f9feb802a2f4052df61c0d1a01272accd174c351d7e9e1f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 331.7 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91f34a6f8626b20f0adacdd364036f40d1da85d213c2cf7be0607cde2c8d0f2b
MD5 b62758aa21cea5dba1d668e9097dda9b
BLAKE2b-256 125defe156d9e6cfc1affa8b513c8ec1f2ca0f2770e80a04058ce8a8851e7900

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5383991dcad641868a0af78c42ac86a1406ccf9803a20e2d690fc34a6119134e
MD5 4833aefbabf28b15b40c1b3c49b0dd11
BLAKE2b-256 fea5d13ee2387feb95fccaae56c6a4ee9df15dbc33bf319693ed7a81293643db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ceb49c78b3e08ed3f9ff85350932ae59788596e8b45c6a4ca5d599337ba261e9
MD5 f5ff0d23d9fcb31fe5687d166c49924c
BLAKE2b-256 221f780842cd28363c00a518859a58b6e802e5f79e88a442ffb482b88cfa891c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccacd1c5e0e3e1ab4d2b3dac5228623e5a682915a61d2adc2e018015aa259475
MD5 9684b36b21e2bfde87edfa69f8b0b620
BLAKE2b-256 b359ee9a414470a978ac8edd8711482a973c513e3ef0a980eb71fc2d9dba6173

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fa8416efd9f260c76125eceb554c4d731115df11d15fe6c4356a4855df7eccb
MD5 216ed4e8eca6d49229c0825780f94967
BLAKE2b-256 f44578cb9ab3e3d16c7fde1523cfefe329f3d1331e55abaff4da67c2f355e942

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 549ac4bf3bbc823151fd4bdf761d644db8b0271bd9ae3f110b7f5ab804fcc1aa
MD5 7b090a6e65382becc47b53bf13621c0e
BLAKE2b-256 57f682b3d4eee9be6e81468f4b8b8a2f3780a0147095de6965d8c79db4c86f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiokafka-0.14.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a7be05a3c72fa53c87b2a1c3979ca64d7fda870edb520ffc2871c2e7c99cd08
MD5 61a9c21b9ff5bbb5ae2993308105da8e
BLAKE2b-256 4cc3d58aa1c6fc7b78548fb6619303dcb1d8736ecb5313e03a14d97f7b4de7ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiokafka-0.14.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 314.6 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e51d48110767f228a44ccfd6e41c5444644c55e01f73b0a021227f19803a3714
MD5 9dea3dce8f4b96e2c3f43bfeac14961f
BLAKE2b-256 636aebd7f85a300589c3af49f75f60e1fc0057ece51549efdac20531b4094701

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a009ffd44afdcc2e982986dc0c80c60b3553b46d8666eafa78a69038f24036e6
MD5 15d35465778227e0f72daae52b588e4e
BLAKE2b-256 5bef7ee4ca288234d6254357e8adfbb032ef619e7bdecda73bb8bd0291cbd0db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fd32fbddaae68ff12960ab79e368375e925920547e53997333c41f5c63b076f
MD5 0b5cba541ecac8a01f04ba55a6739abc
BLAKE2b-256 e3605c7c82e4d0c6f7e965e76e224378edd145c065901dadbb0052d74e8d6634

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f68e75acf03631ea046b00bc8cc9aca8e3eb89486468b884629586ae6f2c63bc
MD5 236335c34374d126c257ba361285e325
BLAKE2b-256 d81f3326cabf36e4a2b05c81a1f2bb521a21b554998d02075151e84e510ad694

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiokafka-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c767f320c902b126b7b37afb4ade241dc96e7d74b3515f0d0c1c8a800065113
MD5 cb63e3bf17a909feda4baa755386a445
BLAKE2b-256 e358254fd1cd51c67976d0a0643ccb34a5603c4cc34fa8e8833895baffe35df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiokafka-0.14.0-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