Skip to main content

A developer-friendly library for integrating RabbitMQ with Django applications.

Project description

ApexMQ

ApexMQ is a Django application designed to manage RabbitMQ connections and message consumers efficiently. It supports setting up RabbitMQ connections, creating channels and queues, and processing messages from RabbitMQ queues.

Features

  • RabbitMQ Connection Management: Establish and manage RabbitMQ connections.
  • Channel and Queue Management: Create and manage channels and queues within RabbitMQ.
  • Autoreload Support: Automatically reconfigure RabbitMQ connections when code changes are detected (in DEBUG mode).
  • Class-Based Consumers: Automatically register consumer classes in consumers.py.
  • Message Production: Easily send messages to multiple queues using a producer.

Installation

To use ApexMQ in your Django project, follow these steps:

  1. Add ApexMQ to your Django Project

    Add apexmq to the INSTALLED_APPS list in your Django project's settings.py:

    INSTALLED_APPS = [
        ...
        'apexmq',
        ...
    ]
    
  2. Configure RabbitMQ Settings

    Define RabbitMQ settings in your Django settings.py file:

    APEXMQ_SETTINGS = {
        "default": {
            "USER": "your_username",
            "PASSWORD": "your_password",
            "HOST": "localhost",
            "PORT": 5672, # optional
            "VIRTUAL_HOST": "/", # optional
            "CONNECTION_TIMEOUT": 10, # optional
            "HEARTBEAT": 60, # optional
            "MAX_RETRIES": 5, # optional
            "RETRY_DELAY": 5, # optional
            "CHANNELS": {
                "channel_name": {
                    "QUEUES": {
                        "queue_name": {
                            "DURABLE": True, # optional
                            "EXCLUSIVE": False, # optional
                            "PASSIVE": False, # optional
                            "AUTO_DELETE": False, # optional
                            "AUTO_ACK": True, # optional
                        }
                    }
                }
            },
        }
    }
    
  3. Usages of Consumer 3.1 Create a Consumer To create a custom consumer, subclass BaseConsumer and define methods to handle specific actions:

    # your_app/consumers.py
    
    from apexmq.consumers import BaseConsumer
    
    class MyCustomConsumer(BaseConsumer):
        lookup_prefix = "prefix"
    
        def created(self, action: str, data):
            """
            This method will get data for action type: prefix.created
            """
            print("You can handle ")
    
        def custom_action(self, data):
            """
            This method is for handle action type: prefix.custom.action
            """
            print(f"Handling 'some_action' with data: {data}")
    

    Note: There's no need to manually register your consumer class. ApexMQ automatically discovers and registers all consumers defined in your_app/consumers.py.

    3.2 Handle Multiple Actions in One Consumer You can define multiple methods in your consumer class to handle different actions. The method name should match the suffix of the action type you're handling. For example:

    • If the action type is user.created, ApexMQ will call the created() method.

    • If the action type is user.updated, it will call the updated() method.

      3.2 Consume Decorator You can consume messages using the on_consume decorator. This decorator registers a function as a handler for a specific action.

    from apexmq.consumers import on_consume
    
    @on_consume("user.created")
    def user_create(data: dict):
        # Handle user.created action
        print(f"User created: {data}")
    

  1. Usages of Producers ApexMQ provides a simple way to publish messages to multiple RabbitMQ queues. The producer can be imported from apexmq.producers and allows you to send messages to multiple queues in one call. 4.1. Using the Producer To send messages, use the producer() function:
from apexmq.producers import publish, on_model_create, on_model_update, on_model_delete

# Send a message to multiple queues
publish(
    action="user.created",
    data={"id": 1, "username": "janedoe", "email": "jan@example.com"},
    to=["products", "inventory", "notifications"]
)

# this function will send id and name fields to "queue1", "queue2" queues action as "user.create".
# if you didnt provide action action will autocreate as modelname.create
on_model_create(User, ["queue1", "queue2"], ["id", "name"], "user.create")

# this function will send id and email fields to "queue1", "queue2" queues action as "user.update".
# if you didnt provide action action will autocreate as modelname.update
on_model_update(User, ["queue1", "queue2"], ["id", "email"], "user.update")

# now in this developer have more flexibility when model update. need to return tuple (action:str, data:dict)
@on_model_update(User, ["queue1", "queue2"])
def on_user_update(instance):
    return (
        "user.customaction",
        {
            "id": instance.id,
            "name": instance.name,
            "email": instance.email,
            "custom_field" custom_value
        }
    )

# this function will send id field to "queue1", "queue2" queues action as "user.deleted".
# if you didnt provide action action will autocreate as modelname.deleted
on_model_delete(User, ["queue1", "queue2"], "user.delete")
  • action: The action type associated with the message (e.g., user.created).
  • data: The message body, typically a dictionary.
  • to: A list of queue names to send the message to.

4.2. Example Use Case

For example, when a user is created in your system, you can send a message to the products, inventory, and notifications queues simultaneously, informing each of these services about the new user.

Summary

With ApexMQ, you can efficiently manage RabbitMQ connections and messages in your Django project:

  • Class-based consumers are automatically registered when defined in your_app/consumers.py.
  • The producer provides an easy-to-use interface for sending messages to multiple queues with a single function call.

ApexMQ simplifies RabbitMQ integration in Django and allows you to focus more on handling business logic instead of managing connections and consumers manually.

Contributing

We welcome contributions! Please follow the steps below to get started:

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

apexmq-1.0.1.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

apexmq-1.0.1-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file apexmq-1.0.1.tar.gz.

File metadata

  • Download URL: apexmq-1.0.1.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for apexmq-1.0.1.tar.gz
Algorithm Hash digest
SHA256 215150c88f4a137d148bf1aa2c14882d509b2ba6fe41ef9e2c3a67251d611bcc
MD5 dcd0660ff18e1e8fbdb84077c53a0623
BLAKE2b-256 7641190b78ea61bb7c2775858eb6c9369f43313010be9bcc85720ed07b3d03a1

See more details on using hashes here.

File details

Details for the file apexmq-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: apexmq-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for apexmq-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2940966d044354406f2340aad182abdfea4bb632e09a3463920fdc1795de5a92
MD5 085d29ee05edd3495e287dea9ba81409
BLAKE2b-256 7378ec423c12355050872ddaeb254d82e89ac533b70fa849f717631893c30d5b

See more details on using hashes here.

Supported by

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