RocketMQ Python client
Project description
rocketmq-python
RocketMQ Python client
Installation
pip install rocketmq
Usage
Producer
from rocketmq.client import Producer, Message
producer = Producer('PID-XXX')
producer.set_namesrv_domain('http://onsaddr-internet.aliyun.com/rocketmq/nsaddr4client-internet')
producer.set_session_credentials('XXX', 'XXXX', 'ALIYUN')
producer.start()
msg = Message('YOUR-TOPIC')
msg.set_keys('XXX')
msg.set_tags('XXX')
msg.set_body('XXXX')
ret = producer.send_sync(msg)
print(ret.status, ret.msg_id, ret.offset)
producer.shutdown()
PushConsumer
import time
from rocketmq.client import PushConsumer
def callback(msg):
print(msg.id, msg.body)
consumer = PushConsumer('CID_XXX')
consumer.set_namesrv_domain('http://onsaddr-internet.aliyun.com/rocketmq/nsaddr4client-internet')
consumer.set_session_credentials('XXX', 'XXXX', 'ALIYUN')
consumer.subscribe('YOUR-TOPIC', callback)
consumer.start()
while True:
time.sleep(3600)
consumer.shutdown()
PullConsumer
from rocketmq.client import PullConsumer
consumer = PullConsumer('CID_XXX')
consumer.set_namesrv_domain('http://onsaddr-internet.aliyun.com/rocketmq/nsaddr4client-internet')
consumer.set_session_credentials('XXX', 'XXXX', 'ALIYUN')
consumer.start()
for msg in consumer.pull('YOUR-TOPIC'):
print(msg.id, msg.body)
consumer.shutdown()
License
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rocketmq-0.3.7.tar.gz
(1.0 MB
view details)
Built Distributions
File details
Details for the file rocketmq-0.3.7.tar.gz
.
File metadata
- Download URL: rocketmq-0.3.7.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76b6779979d7aed7051bd05ce9946b5e2d2c6b63609ec5a9acc02596d77895b2 |
|
MD5 | 4f16cd49a01bd48e6555c930c9c7a500 |
|
BLAKE2b-256 | ba633091b5a2c18dc3dbbcbc1e903fcb9a42608e04df5cf7ff79b6e216d20def |
File details
Details for the file rocketmq-0.3.7-py2.py3-none-manylinux1_x86_64.whl
.
File metadata
- Download URL: rocketmq-0.3.7-py2.py3-none-manylinux1_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7d895e6e71e83fab408f30786dcd52240f488eb7ec39f97e6c1485075538a37 |
|
MD5 | fae31373a926a6af5f0812013e26e592 |
|
BLAKE2b-256 | 26e806eb24683e4a10dc3bdebb79498d818d73bec5103401430c1d62e9e2781f |
File details
Details for the file rocketmq-0.3.7-py2.py3-none-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: rocketmq-0.3.7-py2.py3-none-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: Python 2, Python 3, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c09e7647921452ce0af82bcc741df68e22aee0659dfc1f509bda040b0dcdad0 |
|
MD5 | edaf4ce7d074d264670c17aa4739e99f |
|
BLAKE2b-256 | 15ccebab9647d4a8a0be92f5a3b8a83dc66d12b606f7fcaea2888a809f8a628b |