Metadata-Version: 2.1
Name: cowfish
Version: 0.2.9
Summary: A useful asynchronous library that is built on top of aiobotocore
Home-page: https://github.com/guyingbo/cowfish
Author: Yingbo Gu
Author-email: tensiongyb@gmail.com
Maintainer: Yingbo Gu
Maintainer-email: tensiongyb@gmail.com
License: MIT
Description: # cowfish
        
        [![Build Status](https://travis-ci.org/guyingbo/cowfish.svg?branch=master)](https://travis-ci.org/guyingbo/cowfish)
        [![Python Version](https://img.shields.io/pypi/pyversions/cowfish.svg)](https://pypi.python.org/pypi/cowfish)
        [![Version](https://img.shields.io/pypi/v/cowfish.svg)](https://pypi.python.org/pypi/cowfish)
        [![Format](https://img.shields.io/pypi/format/cowfish.svg)](https://pypi.python.org/pypi/cowfish)
        [![License](https://img.shields.io/pypi/l/cowfish.svg)](https://pypi.python.org/pypi/cowfish)
        [![codecov](https://codecov.io/gh/guyingbo/cowfish/branch/master/graph/badge.svg)](https://codecov.io/gh/guyingbo/cowfish)
        
        A useful asynchronous library that is built on top of aiobotocore
        
        ## Usage
        
        ~~~
        python -m cowfish.sqsprocesser queue_name region_name
        ~~~
        
        ## Examples
        
        ~~~python
        firehose = Firehose(name, worker_params={'maxsize': 1000})
        
        async def go():
            await firehose.put({'a': 3, 'b': 4})
            ...
            await firehose.stop()
        ~~~
        
        ## For dynamodb
        
        use [aioboto3](https://github.com/terrycain/aioboto3) instead.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6
Description-Content-Type: text/markdown
