Skip to main content

Confluent's Python client for Apache Kafka

Project description

[!WARNING] Due to an error in which we included dependency changes to a recent patch release, Confluent recommends users to refrain from upgrading to 2.6.2 of Confluent Kafka. Confluent will release a new minor version, 2.7.0, where the dependency changes will be appropriately included. Users who have already upgraded to 2.6.2 and made the required dependency changes are free to remain on that version and are recommended to upgrade to 2.7.0 when that version is available. Upon the release of 2.7.0, the 2.6.2 version will be marked deprecated. We apologize for the inconvenience and appreciate the feedback that we have gotten from the community.

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.

To use Schema Registry with the Avro serializer/deserializer:

$ pip install confluent-kafka[avro,schemaregistry]

To use Schema Registry with the JSON serializer/deserializer:

$ pip install confluent-kafka[json,schemaregistry]

To use Schema Registry with the Protobuf serializer/deserializer:

$ pip install confluent-kafka[protobuf,schemaregistry]

When using Data Contract rules (including CSFLE) add the rulesextra, e.g.:

$ pip install confluent-kafka[avro,schemaregistry,rules]

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

confluent_kafka-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl (15.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

confluent_kafka-2.8.0-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.8.0-cp313-cp313-macosx_13_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13 macOS 13.0+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

confluent_kafka-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl (15.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

confluent_kafka-2.8.0-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.8.0-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

confluent_kafka-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl (15.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

confluent_kafka-2.8.0-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.8.0-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

confluent_kafka-2.8.0-cp310-cp310-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.8.0-cp310-cp310-manylinux_2_28_aarch64.whl (15.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

confluent_kafka-2.8.0-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.8.0-cp39-cp39-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

confluent_kafka-2.8.0-cp39-cp39-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

confluent_kafka-2.8.0-cp39-cp39-manylinux_2_28_aarch64.whl (15.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

confluent_kafka-2.8.0-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.8.0-cp38-cp38-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

confluent_kafka-2.8.0-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.8.0-cp38-cp38-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

confluent_kafka-2.8.0-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.8.0-cp37-cp37m-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

confluent_kafka-2.8.0-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.8.0-cp37-cp37m-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ ARM64

confluent_kafka-2.8.0-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.8.0.tar.gz.

File metadata

  • Download URL: confluent_kafka-2.8.0.tar.gz
  • Upload date:
  • Size: 189.8 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.8.0.tar.gz
Algorithm Hash digest
SHA256 56c4aa8e9de6f6e8e3ecf86d396372e76631ec75b107cdb5248c7405ec7c5fa1
MD5 da7617e716194f71a6831017c51f0383
BLAKE2b-256 bda7a6bd180293fd9ac81f60bf7e9488ba133d5fdaa00aa94518900711c206c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fd8181d2866dd182c3247f61740cd2bc1526c9ae1d9e541cd96c44f0f72d4460
MD5 cad8f702956c953a7811cb8fc35e9e28
BLAKE2b-256 b9a4e831d44f370dbd067a780b8fe8959f2e8cb8d878a050dfa06964541b985c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.8 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.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e75230b51456de5cfaefe94c35f3de5101864d8c21518f114d5cd9dd1d7d43b1
MD5 6c95e5ca7ba2aa999373c055dd7f3eaf
BLAKE2b-256 37c280679106bdda754c63e2293f558aaae21557e671faa569e945126e6cb2d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.2 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.8.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abff7c4853e2d118563229329ca0a1f148ee5004cbcb9a8dad9dc8e796fcc477
MD5 f59d03f2ebe52fc87836990f7867c69d
BLAKE2b-256 5828aa3bd7237cafe33224bd431f72a3434c831a8301e6540217768541b3c351

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4c0e655df9faef450654700db3fda163ddbc4b68f5bf5c7633cf1bf9d932d892
MD5 b66e67958141d306f861c026db98ae40
BLAKE2b-256 f551420832cc0161980c1da13fd6b93bf0dfe794e5c8c8c22182d4c33a79e08c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dd3bc67d589dd486d128a159e918ecf3765f8154474edf9f6f701f701de735a1
MD5 e4b4a0458392834ab16d9abee284bb64
BLAKE2b-256 8e380b6dd243657b5fc85e5f3f005af5addbb8ef537f7d1edcf1c15f1b8f1756

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68ebba11c2a33f530d62318c997d40b77e627bfa821683bede0edb043d99504f
MD5 f4646e8d68f0fd0d7b94c800f0bf38c0
BLAKE2b-256 b7575999fd41b4aff7c9727be68aadebe1f13ffe03bb98cceb9a0e35c3fd41eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.8 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.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79ae80fd9aa0d71689d7189591faf00354907b728c172f4f97a6d23797972025
MD5 c81bacbf6998bac072eec2a4c062528d
BLAKE2b-256 4c56455d13c23ec97b968d45101f88ca1e6d51ccf122524da4bd9c5440bc942f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.2 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.8.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c540935d89acf1bc173fddd0b9b978ece348345f5a0fccf549ea8663cfa5152c
MD5 35c237a8954d4deef666eb6d503594a6
BLAKE2b-256 cd3c44e55af7b992b6804eba58afdd49ca86a06d64770f764181e39d71a5c1b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f5e5b18c7acf50777545e817e563b0fa9c74badbabf30474665c03ae8ddcc23
MD5 a6868a5c8c757adbc93e1fbb8111ece5
BLAKE2b-256 d447964539121c1549c615fd7ffd7056dae5e51ea97d5bfa2db7989de31f9c7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80bf43c098df04008dd6a517a9f745b67885af9c35c09d220f4d19661ae4d647
MD5 c911ed47b8db966ef1334dc1fc6879c7
BLAKE2b-256 b959af17e07f9dea2ffff00d0bb6bd3c5eaa91ae10e26f0f2dc6e2184772f8c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 69bfeeecca6077592e3349811f564602da3cbea328c78e2ed80c8de6ebd36634
MD5 125c3469033c96fc0fd1fd9c9743502c
BLAKE2b-256 2b566e370e68a4378f025a03f61055b249fb462d8dc50cff90663507eb92ccc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.8 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.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a01feeac7f27bff079ad1a29f1cf1b149235a975d67d7de20c1935f44b14293
MD5 93e3dde2e469a989e31900e797265cc6
BLAKE2b-256 ae1d47aa6b5ac8cfbc560e563d7d7f36d0e38f55407b25f6e6b332e9899c9e36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.2 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.8.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f03b12d009cfb16649b0e51c06514312d5cbbbe9b06e71cf4ad781b378f8b79f
MD5 db75192599f0e9f1d4e67a170d9ee788
BLAKE2b-256 f61fa52196d179c0d7284dbcad90150ed5ec96b6b55694272987eeaf7750fe33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52a87d1a73ad91d4f81e35a8e6e961a5ad0c49ecdb198e47bd106262e968253e
MD5 6644e447590d2a6c9116026f841bc90b
BLAKE2b-256 c9b6e685d9d41e15de13c7dac3efa8a469fba26647d952ecb7d2fd9dcae640c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5de7ab587ecdc153a029d992e7d470fc68ab943e38931b18fc4a01074afd5c5c
MD5 3f20fb20d8952f32d5faf11e6b6ce3de
BLAKE2b-256 04b58abd799048451a7a5a280bcdfbf1f432b3381880ab99e6883fbfe898267b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b38bdc076689abf2844c7e5dd603eb785be5265091f1db5a95d93a5400f51cf
MD5 26fc14538f6c7d0dc9b541c2afa44d37
BLAKE2b-256 2879fd8532a9b29f20f92826207b4cfa5bb42c3d95de52a6c04d722ddf6b0d60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.8 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.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d7bf431a544f70fc306b3f0dfe6c81439c1479e84ed0281214b97d919e7412e
MD5 9344581e44b9db2b986bed874a57aee9
BLAKE2b-256 c89338d6b47bb6dc490b3b0e973a5f5aad10183ecd6a9146c825494cfc8e20d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.2 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.8.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99505cbe7b42da288dfbc827cd5d11ca1c51ec66a7ba6c0d2faca88a01e34530
MD5 6a140f2ff7bd992dc030a0e52e6482f5
BLAKE2b-256 df2293a0409f8b9cf7171060b2b4097df2d0e1c2992bafd69bd4325add804b38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6526119b466d63acb1c9f04b9f31077089c831c3087b5b2026cf856d6587d07
MD5 987f0b7a122753bb27f599d8c47faac9
BLAKE2b-256 02af8619024681648806952172ab3c61d573b74755ff5a24b347baa087d4307f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ecac5681dbef34f30271c0a0a0a23b7221ae9c560e78415dbf4555e7cd7913e
MD5 3338738a1c2d99678b604f1c2841f840
BLAKE2b-256 8f4f62dee708beae459a224696ed8f9d8bd1e0972d389844e5948fd4da166717

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 55d7b3e3571208a03b539f587609aa21e16b42b032c357e9fee7f336cc07b71d
MD5 104c80204e80f43172153d405a4aed0b
BLAKE2b-256 2bd165e6334ec2d6021d81c76e2c345918e1360c54f21192d00b226fa089fac0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 3.8 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.8.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5445598ee20733225fd4aa871845f08defcd1882be1d2c4876a501cdfadf2bbd
MD5 cad1b974a13aeb24dae120b1798b355f
BLAKE2b-256 cea09950e3b1cbb5ad712a398e258a11887ac69fbfdacb934215b670a7abd25b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp39-cp39-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.2 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.8.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d13d8b638d4d6cb66ca7c80e47104654fdeb22e645b7fdaacbc06761c553ba8
MD5 6b2fa38ded3b87a01e6e211ca296462e
BLAKE2b-256 24c94246917454c128eb6e051b194796456edde16e9b93dc7ac972bbeeb3427b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60d85216f7598e0911303554664c0d432815a115ed06a0ea19e04059dcbba2d7
MD5 36a2f563679bbab05c4375824d73b908
BLAKE2b-256 ce7c27e739e32444837fbddc84f3eeb2ccf6bbbd7bcc469ceb203d7be3b86623

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55daa621c31603372367fbbf4b66b1b0475e3e89a9fcc0de5c58509455b52c2d
MD5 e1efc0d3dcacf96e45245584f9f483fc
BLAKE2b-256 4e2b2e55826ea4564104ad2b293904cef1b9e6bcf1727d049f57a8a3e397d2ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3a8d336c946e456be1737b9760f8dbe8f8acfbc7e14234c821e43b3016be2040
MD5 01771ad6a308b52a2ccb5bc3d8b9d1d2
BLAKE2b-256 9242f20250ca909535a950619a460a57cffe8a4a91521f2830b59f2c8a7cabb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8584a98538fceb374690344697d561c271ce03e9799044ebf986c1e2b1d22a6a
MD5 0f8e6cd1bdd9ee164e1531012b23f420
BLAKE2b-256 409d4001080579eb6446b5a496a2e55ff1438462b1036a027a1beb2cd18ad033

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-cp38-cp38-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 15.4 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.8.0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a0a3b2283b233477fdce1913d59d443fbc188c7ee7aa382fc5ae470b91ff43e
MD5 7d0a4aa7969421ac6cd6ff96fb4fb943
BLAKE2b-256 ceefb14239cf6dc51255a085d2fba15e908d9f2a577f16d5abfceebdca2dfa49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6257a8b45555b79f59aae4254e32b9d3a2b9fe7202e6eb74e2f26b110a2205c1
MD5 984de34cde37918a534b66209b710661
BLAKE2b-256 4fdbb921d56081ca9cdaa84c7a7b33b4966367faedd7da5507df08080e0a1b91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 162419f82072a793ca1da926bbc3e0864b50276c053d7977e351321ed5ab770a
MD5 284b78894d559ea505d5a274a822f6f5
BLAKE2b-256 7f8c41e22b307237c202589c57ddd3924ff80ab5320721c70b1b82ee5c6eefdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 762a80920d675265cecb786a709a976c105f5cae6ec830ecaaae048cdbfe61e5
MD5 1f7e0c8e7584f6a4fb3c8df279e1cbf9
BLAKE2b-256 e565c12601cfa4f4e7a20a5f733e8b96c344c8648775c82284113fc37a6dfd50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 959209ca6259a1cc18598d171d0f65aa7399bc9d56839b1ef3999e7f7cda81b3
MD5 563638f771d83227014c4638efcb9625
BLAKE2b-256 9cf8cf28511afe6d308e19536ba590759de1d52483ad407a63169382c2b1be19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4eba9658accb8bd17c5e230b887e966fdd96c98f455150932cc619bf495292ef
MD5 a4c18aae528671d66126699073eb750e
BLAKE2b-256 92fb0383c75e4fc30f117df4b5903032a12406c6daa3284575cdb0d837c25dc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.8.0-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.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d710286091a1bb82f5b52b5b7602f9e3d54a5e179e24f073dabc8482db1e89a5
MD5 d57ddc69d904f4d3861b085fd5091fe2
BLAKE2b-256 b7b912b53fe5af7b9a3bad6aa6e5310e9e4495ebe0932525486bd8e0cabe9069

See more details on using hashes here.

Supported by

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