An event driven code execution system backed by Django
Project description
django-event-procedures
=======================
An event driven code execution system backed by django
Getting started:
===============
run:
pip install django-event-procedures
in settings:
In INSTALLED_APPS add 'event_procedures' as such:
INSTALLED_APPS = (
...
'event_procedures',
...
)
define SIGNAL_MODULES as a list of modules containing the signals you want
For example, if you want want django.core.signals it would look something like
SIGNAL_MODULES = [
...
'django.core',
...
]
Register the event registration middleware in your middleware:
MIDDLEWARE_CLASSES = (
...
'event_procedures.middleware.EventRegistration',
...
)
=======================
An event driven code execution system backed by django
Getting started:
===============
run:
pip install django-event-procedures
in settings:
In INSTALLED_APPS add 'event_procedures' as such:
INSTALLED_APPS = (
...
'event_procedures',
...
)
define SIGNAL_MODULES as a list of modules containing the signals you want
For example, if you want want django.core.signals it would look something like
SIGNAL_MODULES = [
...
'django.core',
...
]
Register the event registration middleware in your middleware:
MIDDLEWARE_CLASSES = (
...
'event_procedures.middleware.EventRegistration',
...
)
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
File details
Details for the file django-event-procedures-0.1.3.tar.gz.
File metadata
- Download URL: django-event-procedures-0.1.3.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fddb140e02b8a347b7033f8dfc1d2dab24506cd77b4636569380dbe190c25f20
|
|
| MD5 |
4468af2c6574e147f9253797be85db29
|
|
| BLAKE2b-256 |
5c0b8bc6d70fc5b862fbd814fac54ec636054855f4afaa75d26ef538fd6f05f4
|