Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylecular-0.1.1.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pylecular-0.1.1-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file pylecular-0.1.1.tar.gz.

File metadata

  • Download URL: pylecular-0.1.1.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.12

File hashes

Hashes for pylecular-0.1.1.tar.gz
Algorithm Hash digest
SHA256 18a2a9899d4701bb1ba7c183308ae3a440c5ab18dd5a4d124e83254bcc544787
MD5 ac8fad4a6b65da10b79fa7bc4cf59f04
BLAKE2b-256 adccfc80e68cf704c55dc0a9ad5e0a3922bffb7bbba9ae23aaee6df12038039d

See more details on using hashes here.

File details

Details for the file pylecular-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: pylecular-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.12

File hashes

Hashes for pylecular-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 71d95d4a5a161a4f3d3c098d0156b6f16bdf841ec857fa2aa87547371fa5b65a
MD5 d5b6a1193a3d1eea680fa89c951b22da
BLAKE2b-256 766e1b8496bd953bd3cd73b589a7ffc9c33d42cf510f3a509f8230d9cdc3e79d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page