The Python Implementation of Apache RocketMQ Client
English | 简体中文 | RocketMQ Website
Overview
Here is the Python implementation of the client for Apache RocketMQ. Different from the remoting-based client, the current implementation is based on separating architecture for computing and storage, which is the more recommended way to access the RocketMQ service.
Here are some preparations you may need to know (or refer to here).
- Python 3.7 is the minimum version required, Python 3.10 is the recommended version.
- Setup namesrv, broker, and proxy.
Getting Started
Clone the current repository to your local machine and set up a virtual environment for development, which will help you manage dependencies more efficiently. Follow the steps below:
Navigate to the python subdirectory and execute the command below to create a new virtual environment:
python3 -m venv myvenv
Activate the virtual environment. The activation method depends on your operating system:
- For Windows, execute:
myvenv\Scripts\activate.bat - For macOS/Linux: execute:
source myvenv/bin/activate
Install the required dependency libraries by executing the following command:
pip install -r requirements.txt
Current Progress
-
Protocol layer code generation is completed.
-
Partial completion of rpcClient.
Release files for rocketmq-client 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rocketmq_client-0.1.0.tar.gz | 18.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rocketmq_client-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:40.0 kB
Release files / rocketmq_client-0.1.0.tar.gz
| Download URL | rocketmq_client-0.1.0.tar.gz |
|---|---|
| Size | 18.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5b715730e2f4ae06c4a5f925a43c15968a5d2427526a163ec8bc28493ee83366
|
|
BLAKE2b-256 checksum How to use checksums |
35504c60c6141372a094a92474b98dd2a272a9279b29fa42ad6ab97c5472cd7b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.5.1 CPython/3.10.6 Darwin/19.6.0
|
Release files / rocketmq_client-0.1.0-py3-none-any.whl
| Download URL | rocketmq_client-0.1.0-py3-none-any.whl |
|---|---|
| Size | 22.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a9679324b5a811442603ff1c486fd580306d2939cc6446762f77608de16673ad
|
|
BLAKE2b-256 checksum How to use checksums |
698d6c5134aba8f7d88524d2c0658dfbfbbc8bf0c3fd47ed32c120f613f0dd25
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.5.1 CPython/3.10.6 Darwin/19.6.0
|