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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

confluent_kafka-2.7.0-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.7.0-cp313-cp313-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13 macOS 13.0+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

confluent_kafka-2.7.0-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.7.0-cp312-cp312-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

confluent_kafka-2.7.0-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.7.0-cp311-cp311-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

confluent_kafka-2.7.0-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.7.0-cp310-cp310-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

confluent_kafka-2.7.0-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.7.0-cp39-cp39-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

confluent_kafka-2.7.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.7.0-cp38-cp38-manylinux_2_28_aarch64.whl (15.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.7m Windows x86-64

confluent_kafka-2.7.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.7.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.7.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.7.0.tar.gz.

File metadata

  • Download URL: confluent_kafka-2.7.0.tar.gz
  • Upload date:
  • Size: 205.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.7.0.tar.gz
Algorithm Hash digest
SHA256 bf2b74bb9c68901ad345440e091b9a8a4490a38db3161b87d44f476650f3c0c6
MD5 00b416ca6ae984ba38a795d5928eb712
BLAKE2b-256 e8b3a46e11f1400dc4f8a2d1502dc06270ca0520a730d7fe4469167a0f6066cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d1cb3d365bb4fdb063654625cd1a1f64a2c1f1b3f324510ea3e008710ef76093
MD5 05e9e42603b5e6af8bdfd4dbd467e363
BLAKE2b-256 8d1553754e9348fef075a9bcd3a84b3405e8c20f1d111930e644be4fd3d39a16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81a985d1ba1d0e66e99cb4bca7bfe302f3bbf06dd6e20be07dfe9661a1eedae3
MD5 82db589d283b2f83e80838985389a32c
BLAKE2b-256 0bf69ce815410402bb6ef22a9fe3fc3fae9108da76754a92e6d635deaa697541

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c3afbec1845d95ccd0cd5e5b986f68d8107b45425e10f1fedeffa908c498f64
MD5 309334e9ad7086278bc73503c361f10a
BLAKE2b-256 15934abec01bd4c10cc76370283f4864984953a933b1662015768f7470605fb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 33606ec063407fad33e04eae8bf066fbe6ced2130c4d58b0a9d244c7fb347332
MD5 43e47bd61a5462d256b9295732022e3f
BLAKE2b-256 0b3b818d7e5f819a534a8065ded3485e511c95566dd76fe8cf261201b061b867

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b907b98daba9b5710a8b20e486d5da38c15d73aaa6475f19ddc51f6307d0747b
MD5 73d72584f8af89896dafe6b7265f63f2
BLAKE2b-256 4911963d66e8424bce32aa6bbb140086077210dbef7902fb4f033a56bb92e26f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc8cfb93768a6e0de5c15f25a76a9e753400839a334da30572a275cf89393ead
MD5 99398aa29435eafec6c9456724126ec9
BLAKE2b-256 bac2e3191bcdd89d0e613cd0fd7f0313f9825ffc36dd9aa451f2a9bc22d06f70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a51c6509cc7f494cd181a534bc9f346cff0df02b56c4ca69b0f9c621dc75186
MD5 f881150acdc2691fecdc46806b541e8c
BLAKE2b-256 ae4dd30778dfba78ee973c6593cb2dfb00450f88fe070acddf8fe45d9ac9a69c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9adda0c1ad6d713bb9b4ad058d0df3a22dd919820232bb47478f11270d60341
MD5 c4a36e10ed0ddd538d21c2561941b5df
BLAKE2b-256 449f0eb6b9d858a98e7f6c33212ba5be8e9207f10fa028aedc772b612c93b964

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5664d177dc7859e1a6c86f1b325adf6b87e84873ad2115ef63d2a539716dcb62
MD5 578f48fc1e5bac947e2a2f03e3b39229
BLAKE2b-256 acf563d0d9c27adfc3ec09b197e727796c34751b8a1a2dde28db68d02afc7a69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a397d9e2be15c9311ea51279785e75d9bf439bf15f3565043545440cc608ef40
MD5 5f95f7194a1da25568bba5a198d4e4ee
BLAKE2b-256 f61bd4d6bee7177d016f4db16b3efecad91ba563a9839ebcf82f045538328910

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 004952e98e64966115bb4c1836a28d439036f921f228dc6718409956ee3e854d
MD5 84dec6f66d987833fec97f8df5eae8ee
BLAKE2b-256 d1e17265021814bdf90b773a9b976272f0f044e487ae77badc11ddeae18ea5f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1a64a7c29f79fd536b19284340fb025992ee7bb6ef06a856c98f864424b27a3
MD5 048d97c33efec007285436cf7525863c
BLAKE2b-256 a8c525b951af245efadc53630694a54087e561d26379e0318281db3b5750b9e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84aab3f8bfeaa31cbf22b3c11d6f9c751c7cd90be7ca5ce58f379b2e91d9042c
MD5 154387e2d3b160ea410a59a9e5d7649e
BLAKE2b-256 1c19798eb19d6e4d0b878e8baa55a058d10f4f0eb6a3861201db4c768cb1523c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c62be1fa9c05240310880d5babbacd1bc5a923249197efee03b9db697b71f017
MD5 b64b0311f15dc84f8099027ceff4ce2a
BLAKE2b-256 22a83f3615ae8904cbfbe6c2383dbaaa02e2c7a25f29e1f07803fdb8e9e1ec1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c42d0b63b5147e2e0ff35b89eea8b7542d61c05ace40aa2c9c5390e94b5c389
MD5 49f81373d65b9bd1f472e521b598d9c6
BLAKE2b-256 6ce4d2546c81ddccc890957b8c79da28555ed670b9f90a31d8bc6473bd95e2ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 79d46be5d6fa6efda286dfe4e6f88cff21d1458ae8013315998e45e6a4d6e369
MD5 50d424d385b56bd1538fcf2f4b46fae7
BLAKE2b-256 2d0e239b6ff63b1aef61421c4bd6c8eee6976bb75b413bafede97967888f6242

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bc18cd064bcf7d86c2ffb902188946ac5c1ae0d1988035adf9bf19e4f30c069
MD5 cbcc045aa64a3415fdd5b0ae8cb3687c
BLAKE2b-256 703e88b76381158461687a7a21d1fd6834a130976944e689b0c87697fbd50b8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d5405c877f646e579613f7ba9133371b6e173c71dd585c14184a5d9533d83cf
MD5 c2588ffbcae9d3c0e4239f57617de655
BLAKE2b-256 2db07521fd9657fea3fb581935e660467ed6c95a0bf645203d6dc7b0e2c2bc9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9b4c5b31d24cdb9930be47d4c9dd7840f0c0a94259c8f9ce02c4ce38609dac1
MD5 c6e05d129b2bd671ddc9e31ff8cc7202
BLAKE2b-256 befcccb809b06a7f769399f69a3dc72e84550307a31c9da1e75f65b98802a184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65bb3a73e8f044e73fa8577e6a079d4dde3765ae6bf8d3d608aad183439cc374
MD5 a87c3a57807dcacb00df6b42045d1631
BLAKE2b-256 2066d2a86d91addd28fcbbdfc3a2a9518f2909e63289d258dff853754e1b62c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 27c81961b8864f0eb4c7ed8024aec3ed3ae3f249446b592840a173594cad66fb
MD5 3247d0dc01097270f5c696e2de0e470e
BLAKE2b-256 5d7b74d0716005e180d14fcf6713af5b6fe68523bc9f2e87af6b0106a69632b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32f95f1040edcefe1aa68b71b6bd7c801f1f9814a5cf5d5267a405c624f0b6d8
MD5 2da74632253b17be635e24ff44572278
BLAKE2b-256 9f8ca0e24204c0f0305b7ecabffeb0c4a029bb55fd3ebe5c5595255a846ad88f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62e0391c22a315c5897d046fb743be32ebbf6ff7391df36e2dd3e7d951f57a54
MD5 99e584c0a7c6478153e88fc92a95dd8e
BLAKE2b-256 2c5f7c567d5aa0a46ca58226310e09568459570f4a437f2063b6197a12886cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 728e20ee530bf56caa21102301de828fbd6ffa88d099f822ac5b70d3b15cf752
MD5 6a6681fa10537297cdf58f7afebd33e3
BLAKE2b-256 d6b53c9d48ccb5af00d7fb16fda5825d0a5dacb86b7ec0ea9eb8672dabfdb7e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a27596530ef034786554d1f29ecec0b79c8182e29802034c5676ea368479224
MD5 c6f37f309e12dcb5003516571ad0df87
BLAKE2b-256 693f64f1adc41004b0570c8df7d4a81ea7fb78f10c062862ed29c3d0a2e579c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7b68bdeba3309a42910622e1211580f9fb8612d0b15b8e8b62de782e8e92f2f1
MD5 091ab341f1a315ce711b4f1bd5d3c89d
BLAKE2b-256 e876a0400ce7b2ddda8f4835045b6fa85a1b34068ad0b1406b01beb8755f791f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a060db173e3d5dbc765ce2c31c92af003486ac0b1729f78526e79f52a3a0c3b7
MD5 0fbb0fba4f1fb8693347769ccb200aaa
BLAKE2b-256 e10f3ada0dbad19b5dff0c559bf651ecc2c6da34be09604e07afc44cf951eb25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.0-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.7.0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 685568534714f3f2e891bff036453c7ae8f521946cd508a822151591809159ed
MD5 9de68be8563a62db37cbcca7ce5f00bb
BLAKE2b-256 597d083473f0cd93216aaa2e7381f85cbea112ddfa32560211237563bcb67159

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a500b5ed1d3403707e9a4737f14b120561387a49d770e7928bfa656714e612de
MD5 a82748f51e602c849ede8a0f6a07a2ea
BLAKE2b-256 11e1b1e73bb1931fdfe10e45553d7b78c68bb1077b905d9af543f7f08d6ed76e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d142754af7245cf7e30c62964436d0e94141325062c9a9e09b32bb715999b43
MD5 3cbb4a65b0cb0fa4c66a272b5d86e0b7
BLAKE2b-256 e81eb0a46ee1bcf3c2683ad44525781e73e93acf93607506a5ab7127d96b203d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a569559c1e76ce3bf557cbc6d31b9695a643f6b68213efcb3529b7a603eabdd7
MD5 1fbb1fe9bc33b5e2ef95f99f8ce0bd84
BLAKE2b-256 ae877cf9fff2deee127b4c45a208a24cbc7aeff50e90727801d3354a4048853a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1dbda5fdc5f053fa3ae6c9d81db571d1fb30e92dece77cca20d37473cf7d8363
MD5 11d240b802c98033306744ea730ef958
BLAKE2b-256 2b79d553071cb1b1087270ad13122401b2b5909260f52ac03147d369ac5e4f7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9cf2c6aec99db3952036312513611c6600eccfecd0b904460c18d6cbcae05b8
MD5 b372bda3aef77b6b7798e05929d5287e
BLAKE2b-256 1cc1b67692fd974ceaf7f45aa95f666ce7729fd9708df5cd128663e2825c3ef3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: confluent_kafka-2.7.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.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16b4787178e3765f3b3bedf8b7b6f4ddc7734dae606b350c387d11beeb8bc113
MD5 057fbcf9f0768dd1a4fb6b6c194cf0cd
BLAKE2b-256 6f2aa3568184f5d22ae860ddc6d32265556fc91d9e27f28b6e8321b7b04619fd

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