Skip to main content

Confluent's Python client for Apache Kafka

Project description

Confluent's Python Client for Apache KafkaTM

confluent-kafka-python provides a high-level Producer, Consumer and AdminClient compatible with all Apache KafkaTM brokers >= v0.8, Confluent Cloud and Confluent Platform. The client is:

  • Reliable - It's a wrapper around librdkafka (provided automatically via binary wheels) which is widely deployed in a diverse set of production scenarios. It's tested using the same set of system tests as the Java client and more. It's supported by Confluent.

  • Performant - Performance is a key design consideration. Maximum throughput is on par with the Java client for larger message sizes (where the overhead of the Python interpreter has less impact). Latency is on par with the Java client.

  • Future proof - Confluent, founded by the creators of Kafka, is building a streaming platform with Apache Kafka at its core. It's high priority for us that client features keep pace with core Apache Kafka and components of the Confluent Platform.

Usage

For a step-by-step guide on using the client see Getting Started with Apache Kafka and Python.

Aditional examples can be found in the examples directory or the confluentinc/examples github repo, which include demonstration of:

  • Exactly once data processing using the transactional API.
  • Integration with asyncio.
  • (De)serializing Protobuf, JSON, and Avro data with Confluent Schema Registry integration.
  • Confluent Cloud configuration.

Also refer to the API documentation.

Finally, the tests are useful as a reference for example usage.

Basic Producer Example

from confluent_kafka import Producer

p = Producer({'bootstrap.servers': 'mybroker1,mybroker2'})

def delivery_report(err, msg):
    """ Called once for each message produced to indicate delivery result.
        Triggered by poll() or flush(). """
    if err is not None:
        print('Message delivery failed: {}'.format(err))
    else:
        print('Message delivered to {} [{}]'.format(msg.topic(), msg.partition()))

for data in some_data_source:
    # Trigger any available delivery report callbacks from previous produce() calls
    p.poll(0)

    # Asynchronously produce a message. The delivery report callback will
    # be triggered from the call to poll() above, or flush() below, when the
    # message has been successfully delivered or failed permanently.
    p.produce('mytopic', data.encode('utf-8'), callback=delivery_report)

# Wait for any outstanding messages to be delivered and delivery report
# callbacks to be triggered.
p.flush()

For a discussion on the poll based producer API, refer to the Integrating Apache Kafka With Python Asyncio Web Applications blog post.

Basic Consumer Example

from confluent_kafka import Consumer

c = Consumer({
    'bootstrap.servers': 'mybroker',
    'group.id': 'mygroup',
    'auto.offset.reset': 'earliest'
})

c.subscribe(['mytopic'])

while True:
    msg = c.poll(1.0)

    if msg is None:
        continue
    if msg.error():
        print("Consumer error: {}".format(msg.error()))
        continue

    print('Received message: {}'.format(msg.value().decode('utf-8')))

c.close()

Basic AdminClient Example

Create topics:

from confluent_kafka.admin import AdminClient, NewTopic

a = AdminClient({'bootstrap.servers': 'mybroker'})

new_topics = [NewTopic(topic, num_partitions=3, replication_factor=1) for topic in ["topic1", "topic2"]]
# Note: In a multi-cluster production scenario, it is more typical to use a replication_factor of 3 for durability.

# Call create_topics to asynchronously create topics. A dict
# of <topic,future> is returned.
fs = a.create_topics(new_topics)

# Wait for each operation to finish.
for topic, f in fs.items():
    try:
        f.result()  # The result itself is None
        print("Topic {} created".format(topic))
    except Exception as e:
        print("Failed to create topic {}: {}".format(topic, e))

Thread Safety

The Producer, Consumer and AdminClient are all thread safe.

Install

Install self-contained binary wheels

$ pip install confluent-kafka

NOTE: The pre-built Linux wheels do NOT contain SASL Kerberos/GSSAPI support. If you need SASL Kerberos/GSSAPI support you must install librdkafka and its dependencies using the repositories below and then build confluent-kafka using the instructions in the "Install from source" section below.

Install from source

For source install, see the Install from source section in INSTALL.md.

Broker Compatibility

The Python client (as well as the underlying C library librdkafka) supports all broker versions >= 0.8. But due to the nature of the Kafka protocol in broker versions 0.8 and 0.9 it is not safe for a client to assume what protocol version is actually supported by the broker, thus you will need to hint the Python client what protocol version it may use. This is done through two configuration settings:

  • broker.version.fallback=YOUR_BROKER_VERSION (default 0.9.0.1)
  • api.version.request=true|false (default true)

When using a Kafka 0.10 broker or later you don't need to do anything (api.version.request=true is the default). If you use Kafka broker 0.9 or 0.8 you must set api.version.request=false and set broker.version.fallback to your broker version, e.g broker.version.fallback=0.9.0.1.

More info here: https://github.com/edenhill/librdkafka/wiki/Broker-version-compatibility

SSL certificates

If you're connecting to a Kafka cluster through SSL you will need to configure the client with 'security.protocol': 'SSL' (or 'SASL_SSL' if SASL authentication is used).

The client will use CA certificates to verify the broker's certificate. The embedded OpenSSL library will look for CA certificates in /usr/lib/ssl/certs/ or /usr/lib/ssl/cacert.pem. CA certificates are typically provided by the Linux distribution's ca-certificates package which needs to be installed through apt, yum, et.al.

If your system stores CA certificates in another location you will need to configure the client with 'ssl.ca.location': '/path/to/cacert.pem'.

Alternatively, the CA certificates can be provided by the certifi Python package. To use certifi, add an import certifi line and configure the client's CA location with 'ssl.ca.location': certifi.where().

License

Apache License v2.0

KAFKA is a registered trademark of The Apache Software Foundation and has been licensed for use by confluent-kafka-python. confluent-kafka-python has no affiliation with and is not endorsed by The Apache Software Foundation.

Developer Notes

Instructions on building and testing confluent-kafka-python can be found here.

Confluent Cloud

For a step-by-step guide on using the Python client with Confluent Cloud see Getting Started with Apache Kafka and Python on Confluent Developer.

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

confluent_kafka-2.6.1.tar.gz (160.0 kB view details)

Uploaded Source

Built Distributions

confluent_kafka-2.6.1-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13 Windows x86-64

confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13 macOS 13.0+ x86-64

confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13 macOS 13.0+ ARM64

confluent_kafka-2.6.1-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

confluent_kafka-2.6.1-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

confluent_kafka-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

confluent_kafka-2.6.1-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

confluent_kafka-2.6.1-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

confluent_kafka-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

confluent_kafka-2.6.1-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

confluent_kafka-2.6.1-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

confluent_kafka-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

confluent_kafka-2.6.1-cp39-cp39-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

confluent_kafka-2.6.1-cp39-cp39-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

confluent_kafka-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

confluent_kafka-2.6.1-cp38-cp38-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

confluent_kafka-2.6.1-cp38-cp38-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

confluent_kafka-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

confluent_kafka-2.6.1-cp37-cp37m-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ ARM64

confluent_kafka-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file confluent_kafka-2.6.1.tar.gz.

File metadata

  • Download URL: confluent_kafka-2.6.1.tar.gz
  • Upload date:
  • Size: 160.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1.tar.gz
Algorithm Hash digest
SHA256 71fdab0f65ccdb00eff0f14ccde65723ebbd20392723f8c1e87e5d8ab29e50cf
MD5 347e02ff2fb4433c2b27ea230013e630
BLAKE2b-256 1389928e6886ba33f5847692430d003dc33f81a6e595d25f9935d6185ea073d3

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 150735910da42c44f7fa21ad96e3ae0f52df34066f163d3f544001a64ea776d2
MD5 9d15e61ac3e170a02199d9dab926bad8
BLAKE2b-256 b6eb042c083e0d0a5016559dda61fb060e1c9be4fe540c95898c35a9fd540762

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efc94016d3b438f0af2ddd3f5a8fb293616fda296644f341161033b24282b23d
MD5 c065d2124470cf5537599457b4581065
BLAKE2b-256 ab71bd85b6b0e30227d722649a180de3459d3360cc01380f370651ff18d4dba1

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c38bf716dbf99bd0e84ba867417e397c4d544d37a530b28df6cadd227a57f98
MD5 8340074eb9991fe7736fde05abe84fd5
BLAKE2b-256 1f5bd4963bf090a8ae0712d83163f43a018297216a2cb4d0c28a422c2a0c254b

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, macOS 13.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 90853bbf466c57e0295076549b9b3b9cb6ab9447965977f3cde7f0790c39b5d6
MD5 bbb74b9cc78f2a9d5237827a8a06abda
BLAKE2b-256 7dfc4e3e5c492111d8d4444888f0503a8cebdfca70fbe64e63be8cea41de88d1

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, macOS 13.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 2584812d8834932e194929544d09325dd09039223aced7ab09095ffd4e96a1ca
MD5 fca1613e57fd0e1e024a11a750ea56f0
BLAKE2b-256 8ccfb5d0124b143a98c7bc0ecd638f12a05db9c1ba173349d0bf22e23ac559a4

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b17da915fc35b1bef49d599f685656f65f379094dbbc7aafc5ede1843cc72699
MD5 0b412d651b323b92c1515760ec2cd43f
BLAKE2b-256 0e68d7618aa37c343d2b918704aff5b05bda7d2329c3493163247e4d5cb75a1e

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 298aa323eb8507862ccfa619367667b41ab76ddf3657e8a45dafe4b270208257
MD5 70b5b2fb9bf3f261b120814a304cf649
BLAKE2b-256 0544b387e65fa2a9ef73adbc10fb2e81d0daed9a76bd5492a15a7321a69809c9

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c2b63f7f764dc504296a8a474a3f09e408a456626cf938635eb31f59cac59fa
MD5 f66eaf2e08a0bea7ae52d3efc367b5dc
BLAKE2b-256 d3a0598aff8b2249f6f73471257898ba44188fa5096cb95fa89468cc6cb33518

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a21b712b17362fd0602faa87c4363bd604f271ca62076bcf2d83ca91d2bd62c2
MD5 0e9c9e44e240b11f2bcde7ceccdae693
BLAKE2b-256 bd871854e3fca1aa02c28ca69b2df844523854c020d2cf4757e40f5f70060c59

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5062f24f3af27f6edd63cb71a663144de09dd3249647c80c4aec9655a0ea1dd
MD5 f02a14962fb22ddb9059a10214064425
BLAKE2b-256 601dce01ed336e2724410e083970528aacdf448757d87607be183d8a745ba1bd

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a6cea569aa1fb7171b59f87edaf000d40fe0f92f9722d107230a6338fbd20f61
MD5 37d7ea75233296bc7a405778b3992dd9
BLAKE2b-256 8c7b54d4cbbab16a1de785e0d757a95ebe2aef72e3b80d0a9587837642718e7b

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15af5ae70c9376aba62462f20dbc846364a41f6ae4071baac36a3adb44ec29bb
MD5 a981e5bea1df4abc590c8521538966d7
BLAKE2b-256 d1355b101cf501d09ba9ba75021796445da05b605b3802285a69e70ba2464217

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 56473c3e8189b63fceae42569c31e339d0b9a4aac2fb3d38f744400837251857
MD5 a47b059f7c4e6a2bdfc376602cd2cdfe
BLAKE2b-256 423f03eb5a53063a7dcc6eee38825ee95cb2c57d2a11d6e415d6c83399322f95

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44d8d1bb3ffaba84f2e169614651662fb57c3645c50f88effb653d76149ac18e
MD5 0082fc7b99310bcf2fb82ebf0d13d15d
BLAKE2b-256 f2a1abf17c7da630cee6f2006f9b1a5eb0091ed441ab659ae0e558ab68b33e60

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db46641c7a48cc998900c4e85778c4ea838d2b940433948831deae0d883945f3
MD5 5568eccc2efd8e359017e258facda9f1
BLAKE2b-256 b02f32e23001f72f3cc1f75b573459b6d76d8493fa9d05963eda3a1779db5c2d

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24cc1833658a93b727337fc31088f4e7d04fdc8e73eae3f946ecae0308737822
MD5 920e27dda3d39479dc25ae658ad77884
BLAKE2b-256 57b8fb4e6d7e40be52cd9243ca85f725ce566d9a0daeabe6208317a5d751396e

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 802af9c60c1c0e068adfc73a10322f9d9d9260f508978ebe853cd6d1e8d6f4ef
MD5 560de2d201bd65a8650fa4e7d2722d43
BLAKE2b-256 d037fab84e4760975794d821b088adc18df7f9d09615cfbac57449b2bd2b86d3

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fef7efc866e12db75060d3ec7b74cd6cf5322d8bf72267f1e3204a98ee6b75b
MD5 facdfdb7dfd307b0f8f1bbacb32cee9b
BLAKE2b-256 3aa8d3635bba1b4cb48559f7287cd4664e25da81733c2dee6e5267e9732d41bf

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c41b8461958690aa35ceb5619cf910c664535fb395a8f331998c74760d51e1d1
MD5 2ac0d2d622b435f3f21848d5caf7a5e0
BLAKE2b-256 a16b40585af215b88fc558abea6e20793cd39078ee1e28d567dc9175a51e4e1a

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 832f17bc8568bdec1823a46ebe66e0ccbffbb0f5917f8ed6226258186aed9bae
MD5 577c9088856193417ec1cbf84d6d28f7
BLAKE2b-256 532d8be9cc2130df5928890e59a6fd702b2ed26207fe9017e86f9fca71e07718

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a6d3f65f6df9bdeeafd3de206159c0d0c529e17c89c839376df39af029ba1260
MD5 9d42d9e5b7b253233aae6abe95fa1294
BLAKE2b-256 2549dd7134fc41793b3f28299652f5745da2636c9b3279d57d1c08116ed68d8f

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4294ff4e9031a31f2cb807e284aedbf988e49a27bfe90dec35aad9f8e07db9e
MD5 b5a5547ac082fa5c27e92b2085c16dae
BLAKE2b-256 35f76a4167416dd9c3fd685d42a57daf274840daae5fe22af887f2a22d4ea876

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b615cd8d35c94bed594bfc0905cf9d5e83f8be1ff49902898b29896748015394
MD5 7699f9d78e78ccab1eceb597877add13
BLAKE2b-256 9a207af2530e070a1bffc995b7ca22d4700aa497f8dbc91a271f85774096a9ea

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65cb90cf046e649fd68414fb45b3c9b0db28b4f051474db78ebca527190fb246
MD5 9a808a7b16956d9d0ac2ffdbc373ed58
BLAKE2b-256 6edf0f0883740c8517c839ab91fefa2404f754a5ac5b98f2511135364b9381bd

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1f54816890249316b47a5d479041311445c2829cf71967e2abbc2a5581b06e0
MD5 f7ee7052e9489b1b9bd09aea3c7f205a
BLAKE2b-256 0f7fd982d3311d2eaef6e6093d988d75a7e6aafc90727fd437e96d38dc866a72

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fd2b97770525e1e181fab64f715c21593cc5e3ac858d71300de9a45e8453e31c
MD5 c4c279cb6b209238239eb311e81c6915
BLAKE2b-256 27b913c173ee49afc110a718c5657292e4ac1071f9925f625bd40ad38373a63b

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5e22e09c7316b25c262e45aaffbf254605ebc1bcf0e8ec1fc77b941065acde9
MD5 ab5a06cf26cbdef14a4ee67f1b22b784
BLAKE2b-256 5021371a62465a4c2a32af1d79996d83314a7fcb3793588b2035a6444db9a9bb

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc2ad05ad5283cf9280b64949ed1f83a7201c70ce22f262a8f1939d384e45bed
MD5 93ca40a1a30792216f4e78b5c34787f8
BLAKE2b-256 8952f099cf356f9b439a181f303aaee852083ca372bb8f3d1fe1d0d5c195366d

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc22c426e2b87b92a93b4acd6c762a8cea3fae529ca0b1ba80165b358e041604
MD5 6afc4ab4b5d638f14c1e090eb0be8928
BLAKE2b-256 b438f79fad43f239087ea1284c2004712277579da4befc93dff8475fab586356

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac80ae38a3f44103191cd30177f2871ba6af26ca7511f496cf25f0962eccc523
MD5 16dddd8f5668b38475465f2731dc6fe7
BLAKE2b-256 4b649fb736a67fbd57f54b2682e2e2a26158042321b82965e812623925e20288

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 93e02a8fa4152355b95cd1d6fc82b987f318ca591439dace481d818ad2237ad5
MD5 e85d43878ee69ce6e55a8e0c2c46beac
BLAKE2b-256 d69d3cdfd068a54682a06c844a2b4af81dabd89676b9b6665ba9145161cc2280

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d250199230fdb90eeb48313ed5ca3526ec7a1f30a67c1ae1a98b4d98316172bc
MD5 274ff92a2fabebf06bbae3d2aba05e44
BLAKE2b-256 a69ed0051830906d1250a561565606af16f15b884d586336ebbe906d18634484

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 98cd678cc955cc3ab88b10823ef01aab2937f9d5ff0cba85abe5a5de11696159
MD5 fb323cc367fe8affd3c543580b54237f
BLAKE2b-256 14b6ce800e9d0d7f9d5ae7f8e6e2fc0ccf3ebeb709e2bd978cc6f8d9a8054e47

See more details on using hashes here.

File details

Details for the file confluent_kafka-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: confluent_kafka-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12

File hashes

Hashes for confluent_kafka-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7670bf37fb46892a070f4b191edfe43d8564aa29446c80ddb32a95d183905086
MD5 c888b525f8dbbda7845e2fa06e2f1332
BLAKE2b-256 d6aa5aa86569589ae4ecea7c9cbbf3359f159f0d47434776f5ba7708433011d9

See more details on using hashes here.

Supported by

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