Skip to main content

an easy to use kafka consumer that extends kafka-python, but follows the style of the flask server

Project description

# kafkaesque
This A flask style kafka consumer. It is an extention of the KafkaConsumer from the kafka-python package available [`here`](https://github.com/dpkp/kafka-python)

## Installation
```sh
pip install kafkaesque
```

## writing a consumer looks like this

```
from kafkaesque import Kafkaesque

app = Kafkaesque(
bootstrap_servers=",".join([
"bs_1:9092",
"bs_2:9093",
"bs_3:9094"
]),
group_id="consumer-grp-id"
)

@app.handle('test-topic')
def test_topic_handler(msg):
print "consumed {} from test-topic".format(msg)

if __name__ == "__main__":
app.start()
```

## Author
* **Sankalp Jonna**

Email me with any queries: [sankalpjonna@gmail.com](sankalpjonna@gmail.com).

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

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

Source Distribution

kafkaesque-1.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distributions

kafkaesque-1.0-py2.7.egg (4.2 kB view hashes)

Uploaded Source

kafkaesque-1.0-py2-none-any.whl (3.8 kB view hashes)

Uploaded Python 2

Supported by

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