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. Install ApexMQ Library
pip install apexmq
  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 ApexMQ Settings

    Define ApexMQ 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. 5.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

# In to there for to you can add "broadcast" or ["queue1", "queue2"] for send data

# 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.

5.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.2.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

apexmq-1.0.2-py3-none-any.whl (16.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: apexmq-1.0.2.tar.gz
  • Upload date:
  • Size: 15.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.2.tar.gz
Algorithm Hash digest
SHA256 1298c554cf78a5f93f35a95112bde973027772b06062df89df3c6f5fde4d1a83
MD5 181d40e0cd9ef9f5e7708a61d33a210e
BLAKE2b-256 9d995fdac678414ffb1065bf21bddd37b352fcf1ca65780915ed5397e2c43554

See more details on using hashes here.

File details

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

File metadata

  • Download URL: apexmq-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 16.3 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0dc9a90accf5f79d39dc7efe252d4a6c3bd78c777cd1cb5212c8d427aaacda79
MD5 69a50626bf981e901ee0ac529e530c8b
BLAKE2b-256 42b4abda088a13d49451c0597ea05be7a098c53de1c81e9683e46a15ec29f896

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