Metadata-Version: 2.1
Name: ampq-cl
Version: 0.2.1
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.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: kombu (==3.0.35)
Requires-Dist: pika (==0.13.1)

===================
Project description
===================

**Python version must be greater than 3.7.1**

*Based on the package*

- kombu==3.0.35
- pika==0.13.1

*The sample code*

::
    def worker(data):
                ...
                return SUCCESS


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





