Installation

This section covers the installation of Django Action Triggers. Follow the steps below to get started.

Prerequisites

Before installing Django Action Triggers, ensure you have the following:

  • Python 3.8+

  • Django 3.2+

Installation via PyPI

Django Action Triggers can be installed directly from PyPI using pip:

pip install django-action-triggers

This command above will only install the base library, in order to support specific integrations, you can install the following extras:

Integration

Installation Command

RabbitMQ

pip install django-action-triggers[rabbitmq]

Kafka

pip install django-action-triggers[kafka]

Redis

pip install django-action-triggers[redis]

AWS SQS

pip install django-action-triggers[aws]

AWS SNS

pip install django-action-triggers[aws]

GCP Pub/Sub

pip install django-action-triggers[gcp]

AWS Lambda

pip install django-action-triggers[aws]

Webooks

pip install django-action-triggers[webhooks]

Next Steps

Once you’ve completed the installation, proceed to the setup guide to configure Django Action Triggers in your project.