Metadata-Version: 2.1
Name: ampq-cl
Version: 0.1.4
Summary: A generic queue client
Home-page: https://github.com/poqweur/ampq_cl
Author: wangjy
Author-email: 1149447019@qq.com
License: Apache License v2
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Requires-Dist: kombu (>=4.3.0)

### Project description

Based on the kombu

*The sample code*
```python
def worker(data):
            ...


        consumer = Consumer("amqp://account:password@ip:port/vhost", "queue", worker)
        consumer.run()
```

