Metadata-Version: 2.1
Name: amba-event-stream
Version: 0.3.8
Summary: amba-event-stream for kafka
Home-page: UNKNOWN
Author: Lukas Jesche
Author-email: lukas.jesche.se@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: kafka-python
Requires-Dist: sqlalchemy
Requires-Dist: psycopg2

# amba-event-stream

[![PyPI][]][1]

  [PyPI]: https://img.shields.io/pypi/v/amba-event-stream
  [1]: https://pypi.org/project/amba-event-stream/

amba analytics event stream python package that connects to kafka to produce/connect or process events.

# Installation

``` bash
pip install amba-event-stream
```

# Releasing

Releases are published automatically when a tag is pushed to GitHub.

``` bash
# Set next version number
export RELEASE=x.x.x

# Create tags
git commit --allow-empty -m "Release $RELEASE"
git tag -a $RELEASE -m "Version $RELEASE"

# Push
git push upstream --tags
```


