Metadata-Version: 2.1
Name: hub-kinesis
Version: 1.0.19
Summary: Library for Kinesis Implementation
Home-page: https://github.com/cuenca-mx/hub
Author: Cuenca
Author-email: dev@cuenca.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: boto3 (<2.0,>=1.9.84)
Requires-Dist: botocore
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: black ; extra == 'test'
Requires-Dist: isort[pipfile] ; extra == 'test'
Requires-Dist: flake8 ; extra == 'test'
Requires-Dist: moto (==1.3.13) ; extra == 'test'

# Hub

[![Build Status](https://travis-ci.com/cuenca-mx/hub.svg?branch=master)](https://travis-ci.com/cuenca-mx/hub)
[![Coverage Status](https://coveralls.io/repos/github/cuenca-mx/hub/badge.svg?branch=master)](https://coveralls.io/github/cuenca-mx/hub?branch=master)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

Library to send and receive data between several instances through Kinesis. It uses a worker to keep listening 
streams and a producer to send data and wait for the response.

## Install dev

```bash
make install-dev
make test
```


## Testing

```bash
$ make test
```

## Linter

```bash
make format
make lint
```


