Metadata-Version: 2.1
Name: fasten
Version: 0.0.5
Summary: Fasten Plug-ins basic interface
Home-page: UNKNOWN
Author: 
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.4, <4
Description-Content-Type: text/markdown
Requires-Dist: kafka-python (>=2.0.1)

fasten-python-plugins
=====================

This package provides a template for creating FASTEN plug-ins.
It composed of two abstract classes; `FastenPlugin` and `KafkaPlugin`.
`FastenPlugin` implements logging methods `err` and `log`, and specifies
abstract methods abstract methods for declaring the metadata of a FASTEN
plug-in. `KafkaPlugin` implements the methods `set_consumer`, `set_producer`,
`create_message`, `emit_message`, and `consume_messages`. It also declares
the abstract method `consumes`.
An example is provided in the `demo` directory.

Install
-------

```
pip install fasten
```

Usage
-----

```python
from fasten.plugins.kafka import KafkaPlugin
```


