Python Moleculer Library
Project description
Pylecular
Pylecular is a Python library that implements the Moleculer protocol, enabling microservices communication and orchestration.
Status
🚧 Early Development: Pylecular is in alpha stage and under active development. Currently, it supports basic Moleculer protocol features and only includes NATS transport integration. The API is not stable, and breaking changes are expected. Use with caution in production environments.
Features
- Basic implementation of the Moleculer protocol.
- Support for service-to-service communication.
- Extensible and modular design.
Installation
You can install Pylecular using pip:
pip install pylecular
For development installation, you can clone the repository and install in editable mode:
git clone https://github.com/alvaroinckot/pylecular.git
cd pylecular
pip install -e .
Usage
Here is a basic example of how to use Pylecular:
For more complete examples, check the /examples folder in the repository:
from pylecular.context import Context
from pylecular.service import Service
from pylecular.decorators import action, event
from pylecular.broker import Broker
broker = ServiceBroker("broker-sample")
class MathService(Service):
name = "math"
def __init__(self):
super().__init__(self.name)
@action()
def add(self, ctx):
# Regular action
result = ctx.params.get("a") + ctx.params.get("b")
# Emit event to local listeners
ctx.emit("calculation.done", {"operation": "add", "result": result})
# Broadcast event to all nodes
ctx.broadcast("calculation.completed", {"operation": "add", "result": result})
return result
@event(name="calculation.done")
def calculation_done_handler(self, ctx):
print(f"Calculation done: {ctx.params}")
broker.register(MathService())
await broker.start()
await broker.call("math.add", { "a": 5, "b": 20 })
Roadmap
- Add support for more Moleculer features.
- Improve documentation and examples.
- Enhance performance and stability.
Contributing
Contributions are welcome! Feel free to open issues or submit pull requests to help improve Pylecular.
License
This project is licensed under the MIT License. See the LICENSE file for details.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pylecular-0.1.2.tar.gz.
File metadata
- Download URL: pylecular-0.1.2.tar.gz
- Upload date:
- Size: 20.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b58a66ddf07f89186d7a2e420651179bb01e9117a86e1df0e45f1aeaa555d8ff
|
|
| MD5 |
1aa735b1c864bdb4feb36865f9323417
|
|
| BLAKE2b-256 |
52761474f23b05c8e8c138d321163dd1673e2acaa1d736dc4c93df43c8512a73
|
File details
Details for the file pylecular-0.1.2-py3-none-any.whl.
File metadata
- Download URL: pylecular-0.1.2-py3-none-any.whl
- Upload date:
- Size: 13.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9957240c86313983f87bb29b85665a7ea07422f03b4eb7f4551cbfa2471e9104
|
|
| MD5 |
fccefa612c4ca12e952b5ea57325b872
|
|
| BLAKE2b-256 |
15871a630407e5bb0fb90e5acb545a653a2691e96056fb6f7ec9f9e1b512390a
|