Metadata-Version: 2.1
Name: kafkahelpers
Version: 0.0.2
Summary: Helpers for aiokafka clients
Home-page: https://github.com/jhjaggars/kafkahelpers
Author: Jesse Jaggars
Author-email: jhjaggars@gmail.com
License: Apache 2.0
Description: # Kafka Helpers
        
        A package with classes designed to make working with aiokafka simpler.
        
        ## Getting Started
        
        ```python
        from kafkahelpers import ReconnectingClient
        
        kafka_client = aiokafka.AIOKafkaConsumer()
        client = ReconnectingClient(kafka_client, "my_client")
        
        async def my_func(client):
            print("Hello World!")
        
        
        event_loop.create_task(client.run(my_func))
        ```
        
        ## Installing
        
        The package is simple.  All you need to do is install with your favorite package manager.
        
        ```
        pip install kafkahelpers
        ```
        
        ## Running the Tests
        
        ```
        pytest
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
