superstream
Project description
Superstream
Installation
pip install superstream
Importing
import superstream
from superstream.types import Option
Producer
To use superstream with kafka producer, first define the kafka and superstream configurations:
token = "<superstream-token>"
superstream_host = "<superstream-host>"
brokers = "<kafka-broker>"
topic = "<kafka-topic>"
config = {"bootstrap.servers": brokers}
options = Option(learning_factor=10, servers=brokers)
To initialize superstream, use init function and pass the producer instance as an argument:
producer = Producer(config)
producer = superstream.init(token, superstream_host, config, options, producer=producer)
Finally, to produce messages to kafka, use produce function:
person = {"name": "John Doe", "message": f"Hello, World!"}
producer.produce(
topic,
person,
on_delivery=delivery_callback,
headers={"key": "value"},
)
Consumer
To use superstream with kafka consumer, first define the consumer configurations:
token = "<superstream-token>"
superstream_host = "<superstream-host>"
group = "<kafka-consumer-group>"
topics = ["<kafka-topic>"]
brokers = "<kafka-broker>"
config = {
"bootstrap.servers": brokers,
"group.id": group
}
options = Option(learning_factor=10, servers=brokers)
To initialize superstream, use init function and pass the consumer instance as an argument:
consumer = Consumer(config)
consumer = superstream.init(token, superstream_host, config, options, consumer=consumer)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file superstream_py_beta-1.0.0.tar.gz.
File metadata
- Download URL: superstream_py_beta-1.0.0.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f76d921de467000cde08246e663c7813d35e8670766838dea3855bc28e204f8f
|
|
| MD5 |
574aff413454aabdadc380f25c54be18
|
|
| BLAKE2b-256 |
59dde32abcc81928bbf704536f84493224085021b01b4a35f9a0c006bd0922b5
|
File details
Details for the file superstream_py_beta-1.0.0-py3-none-any.whl.
File metadata
- Download URL: superstream_py_beta-1.0.0-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1240acd58af5620526f9c9b9cdf1a325ad4f7ac62e39453920e0e9588c4de69b
|
|
| MD5 |
9a27d98d8b832020e95554bbc930cb1c
|
|
| BLAKE2b-256 |
6b886ed0997baa80bece8459015f676af2d31567079ca1a0f7ac8aa915029d68
|