No project description provided
Project description
Weni EDA
weni-eda is a Python library designed to simplify the use of Event-Driven Architecture (EDA). It provides an interface that seamlessly integrates with the Django framework and RabbitMQ messaging service. The design is scalable and intended to support various integrations in the future.
Features
- Easy integration with Django.
- Support for RabbitMQ.
- Simplified event handling and message dispatching.
- Scalable design to accommodate future integrations with other frameworks and messaging services.
- Two backends available:
eda(using amqp library) andpika_eda(using pika library with SSL support).
Installation
To install the library, use pip:
pip install weni-eda
Configuration
Django Integration
-
Add weni-eda to your Django project:
Addweni.eda.django.eda_appto yourINSTALLED_APPSinsettings.py:# settings.py INSTALLED_APPS = [ # ... other installed apps 'weni.eda.django.eda_app', ]
-
Environment Variables for weni-eda Configuration
The following environment variables are used to configure the weni-eda library. Here is a detailed explanation of each variable:
Variable Name Examples Description EDA_CONSUMERS_HANDLE"example.event_driven.handle.handle_consumers"Specifies the handler module for consumer events. EDA_BROKER_HOST"localhost"The hostname or IP address of the message broker server. EDA_VIRTUAL_HOST"/"The virtual host to use when connecting to the broker. EDA_BROKER_PORT5672The port number on which the message broker is listening. EDA_BROKER_USER"guest"The username for authenticating with the message broker. EDA_BROKER_PASSWORD"guest"The password for authenticating with the message broker. -
Creating your event consumers
We provide an abstract class that facilitates the consumption of messages. To use it, you need to inherit it and declare theconsumemethod as follows:from weni.eda.django.consumers import EDAConsumer class ExampleConsumer(EDAConsumer): def consume(self, message: Message): body = JSONParser.parse(message.body) self.ack()
JSONParser.parse(message.body)Converts the message arriving from RabbitMQ in JSON format todictself.ack()Confirms to RabbitMQ that the message can be removed from the queue, which prevents it from being reprocessed.
-
Registering your event handlers:
theEDA_CONSUMERS_HANDLEvariable indicates the function that will be called when the consumer starts. this function will be responsible for mapping the messages to their respective consumers. The function must be declared as follows:import amqp from .example_consumer import ExampleConsumer def handle_consumers(channel: amqp.Channel): channel.basic_consume("example-queue", callback=ExampleConsumer().handle)
This indicates that any message arriving at the
example-queuequeue will be dispatched to theExampleConsumerconsumer and will fall into itsconsumemethod. -
Starting to consume the queues
To start consuming messages from the queue, you need to run theedaconsumecommand as follows:python manage.py edaconsume
From then on, all messages that arrive in the queues where your application is written will be dispatched to their respective consumers.
Pika EDA (SSL Support)
pika_eda is an alternative backend that uses the pika library instead of amqp. It provides the same functionality as eda but with additional features:
- SSL/TLS support: Secure connections with automatic SSL certificate verification
- Multiple handles: Support for multiple consumer handlers in a single application
- Enhanced security: Proper hostname verification to prevent MITM attacks
Configuration
-
Add pika_eda to your Django project:
Addweni.pika_eda.django.pika_eda_appto yourINSTALLED_APPSinsettings.py:# settings.py INSTALLED_APPS = [ # ... other installed apps 'weni.pika_eda.django.pika_eda_app', ]
-
Environment Variables for pika_eda Configuration
The following environment variables are used to configure the pika_eda library:
Variable Name Examples Description PIKA_EDA_CONSUMERS_HANDLE"example.event_driven.handle.handle_consumers"or["handle1", "handle2"]Specifies the handler module(s) for consumer events. Can be a string or a list of strings for multiple handles. PIKA_EDA_BROKER_HOST"localhost"The hostname or IP address of the message broker server. PIKA_EDA_VIRTUAL_HOST"/"The virtual host to use when connecting to the broker. PIKA_EDA_BROKER_PORT5671(SSL) or5672(non-SSL)The port number on which the message broker is listening. PIKA_EDA_BROKER_USER"guest"The username for authenticating with the message broker. PIKA_EDA_BROKER_PASSWORD"guest"The password for authenticating with the message broker. PIKA_EDA_SSL_ENABLEDTrueEnable SSL/TLS connections (optional). PIKA_EDA_SSL_CERT_PATH"/path/to/cert.pem"Path to client certificate file (optional, for mutual auth). PIKA_EDA_SSL_KEY_PATH"/path/to/key.pem"Path to client private key file (optional, for mutual auth). PIKA_EDA_SSL_CA_CERTS"/path/to/ca.pem"Path to CA certificate file (optional). PIKA_EDA_SSL_SERVER_HOSTNAME"rabbitmq.example.com"Server hostname for SSL verification (optional, defaults to PIKA_EDA_BROKER_HOST). -
Creating your event consumers
We provide an abstract class that facilitates the consumption of messages. To use it, you need to inherit it and declare theconsumemethod as follows:from weni.pika_eda.django.consumers import PikaEDAConsumer from weni.pika_eda.parsers import JSONParser import pika class ExampleConsumer(PikaEDAConsumer): def consume(self, channel: pika.channel.Channel, method: pika.spec.Basic.Deliver, properties: pika.spec.BasicProperties, body: bytes): body_dict = JSONParser.parse(body) self.ack()
JSONParser.parse(body)Converts the message body from RabbitMQ in JSON format todictself.ack()Confirms to RabbitMQ that the message can be removed from the queue, which prevents it from being reprocessed.
-
Registering your event handlers:
ThePIKA_EDA_CONSUMERS_HANDLEvariable indicates the function(s) that will be called when the consumer starts. This function will be responsible for mapping the messages to their respective consumers. The function must be declared as follows:import pika from .example_consumer import ExampleConsumer def handle_consumers(channel: pika.channel.Channel): channel.basic_consume("example-queue", callback=ExampleConsumer().handle)
This indicates that any message arriving at the
example-queuequeue will be dispatched to theExampleConsumerconsumer and will fall into itsconsumemethod.Multiple Handles: If you need multiple consumer handlers, you can set
PIKA_EDA_CONSUMERS_HANDLEas a list:# settings.py PIKA_EDA_CONSUMERS_HANDLE = [ "app1.handlers.handle_consumers", "app2.handlers.handle_consumers", ]
Then specify which handle to use when running the command:
python manage.py pikaconsume --handle-index 0 # Uses first handle python manage.py pikaconsume --handle-index 1 # Uses second handle
-
Starting to consume the queues
To start consuming messages from the queue, you need to run thepikaconsumecommand as follows:python manage.py pikaconsume
If using multiple handles, specify the handle index:
python manage.py pikaconsume --handle-index 0
From then on, all messages that arrive in the queues where your application is written will be dispatched to their respective consumers.
SSL Configuration Example
For secure connections with SSL:
# settings.py
PIKA_EDA_BROKER_HOST = "rabbitmq.example.com"
PIKA_EDA_BROKER_PORT = 5671 # SSL port
PIKA_EDA_BROKER_USER = "myuser"
PIKA_EDA_BROKER_PASSWORD = "mypassword"
PIKA_EDA_SSL_ENABLED = True
PIKA_EDA_SSL_CA_CERTS = "/path/to/ca_certificate.pem"
PIKA_EDA_SSL_SERVER_HOSTNAME = "rabbitmq.example.com" # Optional, defaults to PIKA_EDA_BROKER_HOST
Security Note: The library automatically uses the broker hostname for SSL verification if PIKA_EDA_SSL_SERVER_HOSTNAME is not explicitly set, ensuring proper certificate verification and preventing MITM attacks.
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 weni_eda-0.1.2a0.tar.gz.
File metadata
- Download URL: weni_eda-0.1.2a0.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.0 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db852f5d3e27fd9b9ee1f1eb80b68d6987b902b1a157395dbcc8b2590b2e86b
|
|
| MD5 |
56c56aa0a6e118564816a4608daec086
|
|
| BLAKE2b-256 |
54506f2a2cba881edd78ee4297bc970f908baaa4e9a0990ccbfab59b8d0deb7e
|
File details
Details for the file weni_eda-0.1.2a0-py3-none-any.whl.
File metadata
- Download URL: weni_eda-0.1.2a0-py3-none-any.whl
- Upload date:
- Size: 20.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.0 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e41f00769a54fd40833d36e300f7cb65971443edc17bc2f7b666b700bb96b4a6
|
|
| MD5 |
34e60ce9c304a70c444d6b8c601267a0
|
|
| BLAKE2b-256 |
275761b701ce82ba483bab6409a415433febe87fc215983a380d9defa9fbfde0
|