Skip to main content

kafka-bridge-client

Python async client for Strimzi Kafka Bridge and Confluent REST Proxy Package include consumer only.

License: MIT PRs Welcome PyPI version

Install

pip install kafka-bridge-client

Usage

By default client use Strimzi Kafka Bridge API

Consumer (async)

from kafka_bridge_client import KafkaBridgeConsumer

# Strimzi Kafka Bridge

consumer1 = KafkaBridgeConsumer(
    'topic1',
    'topic2',
    group_id='my-group,
    auto_offset_reset='earliest',
    enable_auto_commit=False,
    bootstrap_server='your-kafka-bridge-url',
    consumer_name='consumer-name',
)

# Confluent REST Proxy
consumer2 = KafkaBridgeConsumer(
    'topic1',
    'topic2',
    group_id='my-group,
    auto_offset_reset='earliest',
    enable_auto_commit=False,
    bootstrap_server='your-kafka-bridge-url',
    consumer_name='consumer-name',
    proxy='confluent'
)

async for rec in consumer1.get_records():
    print(rec['value'])
    await consumer.commit()

# or

records = await consumer1.poll_records()
print(records)
await consumer.commit()

Producer (sync)

from kafka_bridge_client import KafkaBridgeProducer

producer = KafkaBridgeProducer('http://bridge.url' timeout=5)
producer.send(Message(key='1', value='value'))

Deploy

You need to change version in pyproject.toml and run it

poetry publish --build

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kafka_bridge_client-0.7.1.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kafka_bridge_client-0.7.1-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file kafka_bridge_client-0.7.1.tar.gz.

File metadata

  • Download URL: kafka_bridge_client-0.7.1.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.8.16 Darwin/22.5.0

File hashes

Hashes for kafka_bridge_client-0.7.1.tar.gz
Algorithm Hash digest
SHA256 60a1bb4c0c35aef4d49c25309ecc604a382bf6d2bd80617dc3eb70abfa0232ab
MD5 5860841399fb131b46214e1281ea35da
BLAKE2b-256 f13c1690b118bd188aca4c941f0f21397daa80352c0ae9522ee13d6cc247b92c

See more details on using hashes here.

File details

Details for the file kafka_bridge_client-0.7.1-py3-none-any.whl.

File metadata

File hashes

Hashes for kafka_bridge_client-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f6abf3c21536c520887b0571400be3cb8e491d891973158f27549fa2c6217e99
MD5 6edd9e98e0eb9ed4e8ecd056fe55318e
BLAKE2b-256 975b51e6d7baea1ae46820a8767a39254f1f0e00a9c2a8aaba02a6629137b557

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.7.1 This release

2 files

0.7.0

2 files

0.6.0

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

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