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.2.tar.gz (204.9 kB view details)

Uploaded Source

Built Distributions

confluent_kafka-2.6.2-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13 Windows x86-64

confluent_kafka-2.6.2-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.2-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.2-cp313-cp313-macosx_13_0_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13 macOS 13.0+ x86-64

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

Uploaded CPython 3.13 macOS 13.0+ ARM64

confluent_kafka-2.6.2-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

confluent_kafka-2.6.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

confluent_kafka-2.6.2-cp312-cp312-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

confluent_kafka-2.6.2-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

confluent_kafka-2.6.2-cp311-cp311-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

confluent_kafka-2.6.2-cp311-cp311-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

confluent_kafka-2.6.2-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

confluent_kafka-2.6.2-cp310-cp310-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

confluent_kafka-2.6.2-cp310-cp310-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

confluent_kafka-2.6.2-cp39-cp39-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

confluent_kafka-2.6.2-cp39-cp39-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

confluent_kafka-2.6.2-cp39-cp39-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

confluent_kafka-2.6.2-cp38-cp38-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

confluent_kafka-2.6.2-cp38-cp38-manylinux_2_28_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.6.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

confluent_kafka-2.6.2-cp38-cp38-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

confluent_kafka-2.6.2-cp37-cp37m-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

confluent_kafka-2.6.2-cp37-cp37m-manylinux_2_28_x86_64.whl (4.0 MB view details)

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

confluent_kafka-2.6.2-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.2-cp37-cp37m-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2.tar.gz
  • Upload date:
  • Size: 204.9 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.2.tar.gz
Algorithm Hash digest
SHA256 d36cc04548599a74d7757420704f3443ca6192cd82a524f493ae299b9ac8ed81
MD5 a6f02f1f1ea885de0e9c209e929c4cad
BLAKE2b-256 a96122592e589cd284f90a3c28944d1c8b05a8506ac0ae2e0c3a3f74772858da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 962d48b098a8c840efe15c8d4c7750a8aed1e9819aa919bbc94a92835b49d02a
MD5 fdabe269e186c91db108f4f15973fe99
BLAKE2b-256 e1fe338d2b1c028bc5aeff523bfc67763c11507eaacd5bf0c021c6db6581b52f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a810c220cf429f7aafc8d39e0437e87868e19abbc9f1bcea58a15c870d09f08c
MD5 5fb3647dc36500cc67f4d2b006180414
BLAKE2b-256 9ec2cc3ab38b175eb5d65bcec1b6f241cb239bec4e21fd048d1ab62476afd031

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9348ef89fdc16f5a1bdd458f4bc67d4bc0f4ec4f74081f48fddd74c1be571e9b
MD5 582c71cd4a0594e8a3ca9ea90f49ec97
BLAKE2b-256 6d4995207f7614db1c1955c676f1df48e2205305f7d033971c96cee35be43e8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp313-cp313-macosx_13_0_x86_64.whl
  • Upload date:
  • Size: 3.5 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.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 405c8a641b0e64df5574f77850b47500466e09e2bd7b0eb2f0b8a87fde690c5c
MD5 c6b61c0ba1fba7b55e02e4e2269b725a
BLAKE2b-256 8f5a26d333f1db1c30229e25afc7b86ab1b2c3c17ff039b86f1e6464f7dc5348

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 540e12ad274c507f06e388f6afd307572e3e720d0e56788816973f3632a61059
MD5 7f130b74ac703f5333952880f96aa98d
BLAKE2b-256 49978333f2c4e545d61e649b86b9769f333191075ae297c76323e121104078cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df5de463f30e6d31c39af27575d4ccac8d7197fc6ca104d09add8e92bfa899f1
MD5 ea4b912a7289fe7b9315d695c45e6576
BLAKE2b-256 7ade38471cd4ffedca0c6723fc9e98f874f4938eee4e1fda9389e65b6a9c6201

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0be8ef210e471ef9486ae540c2ab63f84c632b4ba3e082a91773793888a19cef
MD5 ab2901ef7443a5070d6804dd56fa9d88
BLAKE2b-256 02f902e59257d64fd381b15624e1b45dd90533d991279feebf9e713d5ba926bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5df4dc36e5d7ac6d80128be3772560483e37115c46d52425a93cf6af54438859
MD5 40df901fb7acf98bf49859930f9d2a09
BLAKE2b-256 81540c662c8e05eefe0f750466146f711adc485729bd13bf17fde6ba4560a613

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63049405210933cf4937ef6918aa72dbf478e6e1c8c16572a5b52707bddc4398
MD5 6a849c1f764e846c3f53942206e33f31
BLAKE2b-256 bcd4581682922f6af39732080f24a30d6482c10013fb693619c7a2090c1c1d9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp312-cp312-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.5 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.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af91d4abcde3c356af944edd85d6b77bbee5e067395ba67e4886c554f66a1fcb
MD5 392fa1d6068df3d566d74e3a3044cfa9
BLAKE2b-256 32f23e441ab628c831232c96e1e0ca1db97cf26d0c236373ea480264d2e1816b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b0efa6411dda0e1e5f8fe2bf36b7fd4b8106ef402515a8644adc1b0a30f19612
MD5 6c0874b0a2a78a280126e4cfbb4095f4
BLAKE2b-256 62cf1f4dd267186d0e3fe8f256042cb8c183c96b2f4f22a19ebadae988d37fd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 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.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3594b5a49d6b9b3866c0ebb004ddbce51f829946ae7723b5b7de0ef15e190ff1
MD5 8d4b71fdc51ce410b89595b8e7ff3984
BLAKE2b-256 bc96ea0ce4bbc4a0d4da0f00949cdc7e56adf51f94221f1f588c88b85f3e094f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69b4268f96a6076d9d9869ca2a059ca2474e1c24d1299882239ca1e2b236a430
MD5 4179b74ad37f7e26e814dc32cbe92d27
BLAKE2b-256 e802ed767c2021170aedb6f34d95fa1ed9cde6c3a56c280d7798b627fc630b24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06e6eecaf8c545fcbc18695fa4f590eda1173388c065e1cf94da45a362515a2e
MD5 0eae88b00db31abd309c72236def7b8c
BLAKE2b-256 63785ce95d8b2a76dcb55ffcf3e9a040f9b02894272fe1bb584b008bb43648e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.5 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.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b438f8875d14977510d7f7682a51aa5d6b5165337afa97fa217b60dbbe329f92
MD5 557bd76ffb80a52d20c2d2a6dd38d7c5
BLAKE2b-256 d086370032aacfb6c674cc4f2f52d48ba3c01e4e26c2693dfd84e0d0a001ddce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee692e88515e9f78678b5cf9733df5b2f3daad40923a07bcfddb19865b9719cc
MD5 776ceef0ee3b79cf60947cb3e1a264e0
BLAKE2b-256 b0436b522f76ae3fc15f054c85fb31eb3c560f5878e0238e3be7d7f2bf8c89ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 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.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3128087d9783b27237946b712e2d797d569bd09071bf8e288947df7952fd79ee
MD5 b6fc3183a98a09763efafc52c45c78ad
BLAKE2b-256 303cd33770b10507ab61018cfdcb913536be00c56a5da6cf9d793fe2400bb3a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d20715cb953bacee7182d162b9477f31e74cfda6817b9652d2f297037c7ba4c
MD5 fa102a887b447522b6d2d42e5c85ac64
BLAKE2b-256 5337bc898bb73cd345fb6386b1536d6b7565d995b0523cb32d7d84ae34e2d831

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7cf7dad9668ec1ec0f4cb794a237226ed4341871d78a8db6905f76009630f1c
MD5 9a70c0b016cea01396b7436586aa8c56
BLAKE2b-256 32e326a2d03fe3a9b5291ed3eb68b4a3e27c357a7f77413e413b282c30e2f3bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.5 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.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7879ee77d1ddc4123918a11e73931f8dc24959f897c09ba9003cd225c23ddfaf
MD5 bdc034693b11525e375121f444db40c4
BLAKE2b-256 4aa0396247e52a939516a7bb84dedc303f4582b5c35aad873178b16f3a135009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d7e843ebdb8cb9e2b83048002f22ba9c0fa94f04c024a6bdf515d71ecf0a5c0e
MD5 7d0d695f4cfcaa8498d71df1cd6b29e5
BLAKE2b-256 149f6b62c90a857380496fc77a1005325ce23d16e6ec6eb9253b7d12aa193007

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 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.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0403efc150c8ca6b1e213be1ca82ce8e385393586e93a480a81ebd9d2beb9fc6
MD5 8475ada82c83599f0c35d5f823d13ced
BLAKE2b-256 ccc0ab3bf3d795b90580997f20e0ca15ca5352a788a3224e6694322c72fc6e87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86094674866350b39e3947631d88cb7ef93c27110f91093fc159e2a18be60021
MD5 64fea149f6b50f76305ee6dae6fbfb17
BLAKE2b-256 7459ec7782548e8662530821b14a449496dc523d03f62b62ef584363bd9726cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe66720ff711d8d163f5b23970320c7b3ce89e044b09df81bea13659f11c354d
MD5 64c584e53379c8ca86fd0cda25a64e67
BLAKE2b-256 72190852a7a3578761e10ca559c9bdb9e565955624528af0100bde4402665444

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.5 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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f03779a9b5c5a7767a49dbf4482f97d0f2ab0c85e4f9ffd4891c5933cc6d9be
MD5 085b274d77ec20067e8b8c40b192525e
BLAKE2b-256 7b442374b5c1d5d5030472df822da122ad4a425ea96dcc7108b4283981e74e53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a0b1bc4023d3c248524d93e6fef2cfc875a82f872fb89c9513dd5ac0c384f910
MD5 da76f06f2befd12dcc987627258cbfa0
BLAKE2b-256 73a16fa3d90f0aae645325946dc4a415c78c864955e4868df4a9e7bce15812de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp38-cp38-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 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.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f264fb04398a17e7b3c61b9d70f0bee15a538d077834269acdcfa54d0ad273e
MD5 f0bc73dc95ef19f106e2c94433d45d33
BLAKE2b-256 28c8d8256d2e3fd2a5d4efaeefa0beb529aa5b338d125a467688af57a12a5f57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 514b3dec3e0fd6a8f9e92936bd78479a3be57ca586a0ba5e68fa460aa3bcb608
MD5 e6e0ae018a39e0816641757dcca94f81
BLAKE2b-256 705d170031ad7de931eeb2bd1fc7ea7a2ce62bcc9cb75dd2c2e048d34873d6db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c54f0a0f8a08ac54536f618d72d617e11d5301a4e69c75d6113d3adad637955
MD5 15a8fc6e2171d73bcde512bca89ab0c3
BLAKE2b-256 a6f1f2fb10c5115d2efc4c649175eb9c1552c1b221fe3b89b84520a622f33cd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.5 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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 796bd69178d5ee72ea82f68c016c1666a17f78db735fe75d46c6e4db74c1963c
MD5 a7ffde8b7ad543364128cc1a8e0f60bf
BLAKE2b-256 b45d5950ff3dc5060b27b9b721504aa93d43f2becad9fa66827693ad587834db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 de7825742b0d81d591703895650258546edb561476fe7ba6dab327d6bcbb1ce5
MD5 e9c1e7b842e141ce95078f2b46e157fa
BLAKE2b-256 4e6801810239989c236478efb827a83708242f96b8ed7a39959948c48a26f86a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp37-cp37m-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 4.0 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.2-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06148d58853609ae7a0312be88b02a44113361cc43e785c2d5a742724cc58686
MD5 dce99243b2953fef96bbf8f2947a9b4f
BLAKE2b-256 0c72c6986a0c2e188e6a784971ec5bd1de1bf242251f5821a98e4fc497c5a278

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-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.2-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fcc4a9b18ea087bbc4cc028bea38cb6125ef105ded8a08c4c526ff5c1bbc552
MD5 a87a2c909c1620d891d2903286483aca
BLAKE2b-256 eb3b9d77b529caa0febda11be811408560c343a9f6dc08583c889b916e0c2737

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.6.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.5 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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75e88f60a027bb8828011ae23546f55949f1d92c8193e03a122b6931579da2c4
MD5 623a814427356e9c5bf2d15901912d93
BLAKE2b-256 6496ac670660e8474c34fefefb520c6d17617fd31e4129ef095384c3ab23464a

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page