{
  "result": {
    "2.2.10+ppc64le1": {
      "name": "kafka-python",
      "version": "2.2.10+ppc64le1",
      "metadata_version": "2.4",
      "summary": "Pure Python client for Apache Kafka",
      "home_page": "",
      "author": "",
      "author_email": "Dana Powers <dana.powers@gmail.com>",
      "maintainer": "",
      "maintainer_email": "",
      "license": "",
      "description": "Kafka Python client\n------------------------\n\n.. image:: https://img.shields.io/badge/kafka-3.9--0.8-brightgreen.svg\n    :target: https://kafka-python.readthedocs.io/en/master/compatibility.html\n.. image:: https://img.shields.io/pypi/pyversions/kafka-python.svg\n    :target: https://pypi.python.org/pypi/kafka-python\n.. image:: https://coveralls.io/repos/dpkp/kafka-python/badge.svg?branch=master&service=github\n    :target: https://coveralls.io/github/dpkp/kafka-python?branch=master\n.. image:: https://img.shields.io/badge/license-Apache%202-blue.svg\n    :target: https://github.com/dpkp/kafka-python/blob/master/LICENSE\n.. image:: https://img.shields.io/pypi/dw/kafka-python.svg\n    :target: https://pypistats.org/packages/kafka-python\n.. image:: https://img.shields.io/pypi/v/kafka-python.svg\n    :target: https://pypi.org/project/kafka-python\n.. image:: https://img.shields.io/pypi/implementation/kafka-python\n    :target: https://github.com/dpkp/kafka-python/blob/master/setup.py\n\n\n\nPython client for the Apache Kafka distributed stream processing system.\nkafka-python is designed to function much like the official java client, with a\nsprinkling of pythonic interfaces (e.g., consumer iterators).\n\nkafka-python is best used with newer brokers (0.9+), but is backwards-compatible with\nolder versions (to 0.8.0). Some features will only be enabled on newer brokers.\nFor example, fully coordinated consumer groups -- i.e., dynamic partition\nassignment to multiple consumers in the same group -- requires use of 0.9+ kafka\nbrokers. Supporting this feature for earlier broker releases would require\nwriting and maintaining custom leadership election and membership / health\ncheck code (perhaps using zookeeper or consul). For older brokers, you can\nachieve something similar by manually assigning different partitions to each\nconsumer instance with config management tools like chef, ansible, etc. This\napproach will work fine, though it does not support rebalancing on failures.\nSee https://kafka-python.readthedocs.io/en/master/compatibility.html\nfor more details.\n\nPlease note that the master branch may contain unreleased features. For release\ndocumentation, please see readthedocs and/or python's inline help.\n\n.. code-block:: bash\n\n    $ pip install kafka-python\n\n\nKafkaConsumer\n*************\n\nKafkaConsumer is a high-level message consumer, intended to operate as similarly\nas possible to the official java client. Full support for coordinated\nconsumer groups requires use of kafka brokers that support the Group APIs: kafka v0.9+.\n\nSee https://kafka-python.readthedocs.io/en/master/apidoc/KafkaConsumer.html\nfor API and configuration details.\n\nThe consumer iterator returns ConsumerRecords, which are simple namedtuples\nthat expose basic message attributes: topic, partition, offset, key, and value:\n\n.. code-block:: python\n\n    from kafka import KafkaConsumer\n    consumer = KafkaConsumer('my_favorite_topic')\n    for msg in consumer:\n        print (msg)\n\n.. code-block:: python\n\n    # join a consumer group for dynamic partition assignment and offset commits\n    from kafka import KafkaConsumer\n    consumer = KafkaConsumer('my_favorite_topic', group_id='my_favorite_group')\n    for msg in consumer:\n        print (msg)\n\n.. code-block:: python\n\n    # manually assign the partition list for the consumer\n    from kafka import TopicPartition\n    consumer = KafkaConsumer(bootstrap_servers='localhost:1234')\n    consumer.assign([TopicPartition('foobar', 2)])\n    msg = next(consumer)\n\n.. code-block:: python\n\n    # Deserialize msgpack-encoded values\n    consumer = KafkaConsumer(value_deserializer=msgpack.loads)\n    consumer.subscribe(['msgpackfoo'])\n    for msg in consumer:\n        assert isinstance(msg.value, dict)\n\n.. code-block:: python\n\n    # Access record headers. The returned value is a list of tuples\n    # with str, bytes for key and value\n    for msg in consumer:\n        print (msg.headers)\n\n.. code-block:: python\n\n    # Read only committed messages from transactional topic\n    consumer = KafkaConsumer(isolation_level='read_committed')\n    consumer.subscribe(['txn_topic'])\n    for msg in consumer:\n        print(msg)\n\n.. code-block:: python\n\n    # Get consumer metrics\n    metrics = consumer.metrics()\n\n\nKafkaProducer\n*************\n\nKafkaProducer is a high-level, asynchronous message producer. The class is\nintended to operate as similarly as possible to the official java client.\nSee https://kafka-python.readthedocs.io/en/master/apidoc/KafkaProducer.html\nfor more details.\n\n.. code-block:: python\n\n    from kafka import KafkaProducer\n    producer = KafkaProducer(bootstrap_servers='localhost:1234')\n    for _ in range(100):\n        producer.send('foobar', b'some_message_bytes')\n\n.. code-block:: python\n\n    # Block until a single message is sent (or timeout)\n    future = producer.send('foobar', b'another_message')\n    result = future.get(timeout=60)\n\n.. code-block:: python\n\n    # Block until all pending messages are at least put on the network\n    # NOTE: This does not guarantee delivery or success! It is really\n    # only useful if you configure internal batching using linger_ms\n    producer.flush()\n\n.. code-block:: python\n\n    # Use a key for hashed-partitioning\n    producer.send('foobar', key=b'foo', value=b'bar')\n\n.. code-block:: python\n\n    # Serialize json messages\n    import json\n    producer = KafkaProducer(value_serializer=lambda v: json.dumps(v).encode('utf-8'))\n    producer.send('fizzbuzz', {'foo': 'bar'})\n\n.. code-block:: python\n\n    # Serialize string keys\n    producer = KafkaProducer(key_serializer=str.encode)\n    producer.send('flipflap', key='ping', value=b'1234')\n\n.. code-block:: python\n\n    # Compress messages\n    producer = KafkaProducer(compression_type='gzip')\n    for i in range(1000):\n        producer.send('foobar', b'msg %d' % i)\n\n.. code-block:: python\n\n    # Use transactions\n    producer = KafkaProducer(transactional_id='fizzbuzz')\n    producer.init_transactions()\n    producer.begin_transaction()\n    future = producer.send('txn_topic', value=b'yes')\n    future.get() # wait for successful produce\n    producer.commit_transaction() # commit the transaction\n\n    producer.begin_transaction()\n    future = producer.send('txn_topic', value=b'no')\n    future.get() # wait for successful produce\n    producer.abort_transaction() # abort the transaction\n\n.. code-block:: python\n\n    # Include record headers. The format is list of tuples with string key\n    # and bytes value.\n    producer.send('foobar', value=b'c29tZSB2YWx1ZQ==', headers=[('content-encoding', b'base64')])\n\n.. code-block:: python\n\n    # Get producer performance metrics\n    metrics = producer.metrics()\n\n\nThread safety\n*************\n\nThe KafkaProducer can be used across threads without issue, unlike the\nKafkaConsumer which cannot.\n\nWhile it is possible to use the KafkaConsumer in a thread-local manner,\nmultiprocessing is recommended.\n\n\nCompression\n***********\n\nkafka-python supports the following compression formats:\n\n- gzip\n- LZ4\n- Snappy\n- Zstandard (zstd)\n\ngzip is supported natively, the others require installing additional libraries.\nSee https://kafka-python.readthedocs.io/en/master/install.html for more information.\n\n\nOptimized CRC32 Validation\n**************************\n\nKafka uses CRC32 checksums to validate messages. kafka-python includes a pure\npython implementation for compatibility. To improve performance for high-throughput\napplications, kafka-python will use `crc32c` for optimized native code if installed.\nSee https://kafka-python.readthedocs.io/en/master/install.html for installation instructions.\nSee https://pypi.org/project/crc32c/ for details on the underlying crc32c lib.\n\n\nProtocol\n********\n\nA secondary goal of kafka-python is to provide an easy-to-use protocol layer\nfor interacting with kafka brokers via the python repl. This is useful for\ntesting, probing, and general experimentation. The protocol support is\nleveraged to enable a KafkaClient.check_version() method that\nprobes a kafka broker and attempts to identify which version it is running\n(0.8.0 to 2.6+).\n",
      "keywords": "apache kafka,kafka",
      "platform": [],
      "classifiers": [
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: Apache Software License",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Homepage, https://github.com/dpkp/kafka-python"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "crc32c; extra == \"crc32c\"",
        "lz4; extra == \"lz4\"",
        "python-snappy; extra == \"snappy\"",
        "zstandard; extra == \"zstd\"",
        "pytest; extra == \"testing\"",
        "mock; python_version < \"3.3\" and extra == \"testing\"",
        "pytest-mock; extra == \"testing\"",
        "pytest-timeout; extra == \"testing\"",
        "pyperf; extra == \"benchmarks\""
      ],
      "requires_external": [],
      "requires_python": "",
      "description_content_type": "text/x-rst",
      "provides_extras": "benchmarks",
      "dynamic": "",
      "license_expression": "",
      "license_file": "",
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=bcbd347418f604af812c0f3e23d506ff206b7495f17587f6a24d0ccc20d63a7e",
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/bcb/d347418f604af/kafka_python-2.2.10+ppc64le1-py2.py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                3,
                16,
                9,
                21,
                40
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    },
    "2.2.10": {
      "name": "kafka-python",
      "version": "2.2.10",
      "metadata_version": "2.4",
      "summary": "Pure Python client for Apache Kafka",
      "home_page": "",
      "author": "",
      "author_email": "Dana Powers <dana.powers@gmail.com>",
      "maintainer": "",
      "maintainer_email": "",
      "license": "",
      "description": "Kafka Python client\n------------------------\n\n.. image:: https://img.shields.io/badge/kafka-3.9--0.8-brightgreen.svg\n    :target: https://kafka-python.readthedocs.io/en/master/compatibility.html\n.. image:: https://img.shields.io/pypi/pyversions/kafka-python.svg\n    :target: https://pypi.python.org/pypi/kafka-python\n.. image:: https://coveralls.io/repos/dpkp/kafka-python/badge.svg?branch=master&service=github\n    :target: https://coveralls.io/github/dpkp/kafka-python?branch=master\n.. image:: https://img.shields.io/badge/license-Apache%202-blue.svg\n    :target: https://github.com/dpkp/kafka-python/blob/master/LICENSE\n.. image:: https://img.shields.io/pypi/dw/kafka-python.svg\n    :target: https://pypistats.org/packages/kafka-python\n.. image:: https://img.shields.io/pypi/v/kafka-python.svg\n    :target: https://pypi.org/project/kafka-python\n.. image:: https://img.shields.io/pypi/implementation/kafka-python\n    :target: https://github.com/dpkp/kafka-python/blob/master/setup.py\n\n\n\nPython client for the Apache Kafka distributed stream processing system.\nkafka-python is designed to function much like the official java client, with a\nsprinkling of pythonic interfaces (e.g., consumer iterators).\n\nkafka-python is best used with newer brokers (0.9+), but is backwards-compatible with\nolder versions (to 0.8.0). Some features will only be enabled on newer brokers.\nFor example, fully coordinated consumer groups -- i.e., dynamic partition\nassignment to multiple consumers in the same group -- requires use of 0.9+ kafka\nbrokers. Supporting this feature for earlier broker releases would require\nwriting and maintaining custom leadership election and membership / health\ncheck code (perhaps using zookeeper or consul). For older brokers, you can\nachieve something similar by manually assigning different partitions to each\nconsumer instance with config management tools like chef, ansible, etc. This\napproach will work fine, though it does not support rebalancing on failures.\nSee https://kafka-python.readthedocs.io/en/master/compatibility.html\nfor more details.\n\nPlease note that the master branch may contain unreleased features. For release\ndocumentation, please see readthedocs and/or python's inline help.\n\n.. code-block:: bash\n\n    $ pip install kafka-python\n\n\nKafkaConsumer\n*************\n\nKafkaConsumer is a high-level message consumer, intended to operate as similarly\nas possible to the official java client. Full support for coordinated\nconsumer groups requires use of kafka brokers that support the Group APIs: kafka v0.9+.\n\nSee https://kafka-python.readthedocs.io/en/master/apidoc/KafkaConsumer.html\nfor API and configuration details.\n\nThe consumer iterator returns ConsumerRecords, which are simple namedtuples\nthat expose basic message attributes: topic, partition, offset, key, and value:\n\n.. code-block:: python\n\n    from kafka import KafkaConsumer\n    consumer = KafkaConsumer('my_favorite_topic')\n    for msg in consumer:\n        print (msg)\n\n.. code-block:: python\n\n    # join a consumer group for dynamic partition assignment and offset commits\n    from kafka import KafkaConsumer\n    consumer = KafkaConsumer('my_favorite_topic', group_id='my_favorite_group')\n    for msg in consumer:\n        print (msg)\n\n.. code-block:: python\n\n    # manually assign the partition list for the consumer\n    from kafka import TopicPartition\n    consumer = KafkaConsumer(bootstrap_servers='localhost:1234')\n    consumer.assign([TopicPartition('foobar', 2)])\n    msg = next(consumer)\n\n.. code-block:: python\n\n    # Deserialize msgpack-encoded values\n    consumer = KafkaConsumer(value_deserializer=msgpack.loads)\n    consumer.subscribe(['msgpackfoo'])\n    for msg in consumer:\n        assert isinstance(msg.value, dict)\n\n.. code-block:: python\n\n    # Access record headers. The returned value is a list of tuples\n    # with str, bytes for key and value\n    for msg in consumer:\n        print (msg.headers)\n\n.. code-block:: python\n\n    # Read only committed messages from transactional topic\n    consumer = KafkaConsumer(isolation_level='read_committed')\n    consumer.subscribe(['txn_topic'])\n    for msg in consumer:\n        print(msg)\n\n.. code-block:: python\n\n    # Get consumer metrics\n    metrics = consumer.metrics()\n\n\nKafkaProducer\n*************\n\nKafkaProducer is a high-level, asynchronous message producer. The class is\nintended to operate as similarly as possible to the official java client.\nSee https://kafka-python.readthedocs.io/en/master/apidoc/KafkaProducer.html\nfor more details.\n\n.. code-block:: python\n\n    from kafka import KafkaProducer\n    producer = KafkaProducer(bootstrap_servers='localhost:1234')\n    for _ in range(100):\n        producer.send('foobar', b'some_message_bytes')\n\n.. code-block:: python\n\n    # Block until a single message is sent (or timeout)\n    future = producer.send('foobar', b'another_message')\n    result = future.get(timeout=60)\n\n.. code-block:: python\n\n    # Block until all pending messages are at least put on the network\n    # NOTE: This does not guarantee delivery or success! It is really\n    # only useful if you configure internal batching using linger_ms\n    producer.flush()\n\n.. code-block:: python\n\n    # Use a key for hashed-partitioning\n    producer.send('foobar', key=b'foo', value=b'bar')\n\n.. code-block:: python\n\n    # Serialize json messages\n    import json\n    producer = KafkaProducer(value_serializer=lambda v: json.dumps(v).encode('utf-8'))\n    producer.send('fizzbuzz', {'foo': 'bar'})\n\n.. code-block:: python\n\n    # Serialize string keys\n    producer = KafkaProducer(key_serializer=str.encode)\n    producer.send('flipflap', key='ping', value=b'1234')\n\n.. code-block:: python\n\n    # Compress messages\n    producer = KafkaProducer(compression_type='gzip')\n    for i in range(1000):\n        producer.send('foobar', b'msg %d' % i)\n\n.. code-block:: python\n\n    # Use transactions\n    producer = KafkaProducer(transactional_id='fizzbuzz')\n    producer.init_transactions()\n    producer.begin_transaction()\n    future = producer.send('txn_topic', value=b'yes')\n    future.get() # wait for successful produce\n    producer.commit_transaction() # commit the transaction\n\n    producer.begin_transaction()\n    future = producer.send('txn_topic', value=b'no')\n    future.get() # wait for successful produce\n    producer.abort_transaction() # abort the transaction\n\n.. code-block:: python\n\n    # Include record headers. The format is list of tuples with string key\n    # and bytes value.\n    producer.send('foobar', value=b'c29tZSB2YWx1ZQ==', headers=[('content-encoding', b'base64')])\n\n.. code-block:: python\n\n    # Get producer performance metrics\n    metrics = producer.metrics()\n\n\nThread safety\n*************\n\nThe KafkaProducer can be used across threads without issue, unlike the\nKafkaConsumer which cannot.\n\nWhile it is possible to use the KafkaConsumer in a thread-local manner,\nmultiprocessing is recommended.\n\n\nCompression\n***********\n\nkafka-python supports the following compression formats:\n\n- gzip\n- LZ4\n- Snappy\n- Zstandard (zstd)\n\ngzip is supported natively, the others require installing additional libraries.\nSee https://kafka-python.readthedocs.io/en/master/install.html for more information.\n\n\nOptimized CRC32 Validation\n**************************\n\nKafka uses CRC32 checksums to validate messages. kafka-python includes a pure\npython implementation for compatibility. To improve performance for high-throughput\napplications, kafka-python will use `crc32c` for optimized native code if installed.\nSee https://kafka-python.readthedocs.io/en/master/install.html for installation instructions.\nSee https://pypi.org/project/crc32c/ for details on the underlying crc32c lib.\n\n\nProtocol\n********\n\nA secondary goal of kafka-python is to provide an easy-to-use protocol layer\nfor interacting with kafka brokers via the python repl. This is useful for\ntesting, probing, and general experimentation. The protocol support is\nleveraged to enable a KafkaClient.check_version() method that\nprobes a kafka broker and attempts to identify which version it is running\n(0.8.0 to 2.6+).\n",
      "keywords": "apache kafka,kafka",
      "platform": [],
      "classifiers": [
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: Apache Software License",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Programming Language :: Python :: Implementation :: CPython",
        "Programming Language :: Python :: Implementation :: PyPy",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "Environment :: MetaData :: IBM Python Ecosystem"
      ],
      "download_url": "",
      "supported_platform": [],
      "comment": "",
      "provides": [],
      "requires": [],
      "obsoletes": [],
      "project_urls": [
        "Homepage, https://github.com/dpkp/kafka-python"
      ],
      "provides_dist": [],
      "obsoletes_dist": [],
      "requires_dist": [
        "crc32c; extra == \"crc32c\"",
        "lz4; extra == \"lz4\"",
        "python-snappy; extra == \"snappy\"",
        "zstandard; extra == \"zstd\"",
        "pytest; extra == \"testing\"",
        "mock; python_version < \"3.3\" and extra == \"testing\"",
        "pytest-mock; extra == \"testing\"",
        "pytest-timeout; extra == \"testing\"",
        "pyperf; extra == \"benchmarks\""
      ],
      "requires_external": [],
      "requires_python": "",
      "description_content_type": "text/x-rst",
      "provides_extras": [
        "crc32c",
        "lz4",
        "snappy",
        "zstd",
        "testing",
        "benchmarks"
      ],
      "dynamic": [],
      "license_expression": "",
      "license_file": [],
      "+links": [
        {
          "rel": "releasefile",
          "hash_spec": "sha256=3dfccf8ba001f6416ccc030d61f82ddf1505de300c38ec67deaf73efafa357bc",
          "hashes": {
            "sha256": "3dfccf8ba001f6416ccc030d61f82ddf1505de300c38ec67deaf73efafa357bc"
          },
          "href": "https://wheels.developerfirst.ibm.com/ppc64le/linux/+f/3df/ccf8ba001f641/kafka_python-2.2.10-py2.py3-none-any.whl",
          "log": [
            {
              "what": "upload",
              "who": "ppc64le",
              "when": [
                2026,
                7,
                27,
                12,
                45,
                50
              ],
              "dst": "ppc64le/linux"
            }
          ]
        }
      ]
    }
  },
  "type": "projectconfig"
}
