Skip to content

tlkenergy/django_periodiq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django_periodiq

django_periodiq is a Django app that integrates with periodiq a simple scheduler for Dramatiq Task Queue.

Requirements

Installation

Installation is only available directly from this repo:

pip install git+https://github.com/Sovetnikov/django_periodiq

Add django_periodiq to installed apps after django_dramatiq:

import os

INSTALLED_APPS = [
    "django_dramatiq",
    "django_periodiq",

    "myprojectapp1",
    "myprojectapp2",
    # etc...
]

Usage

Running scheduler

django_periodiq provides a management command you can use to auto-discover task modules (same as django_dramatiq) and run scheduler:

python manage.py runperiodiq

or with debug information:

python manage.py runperiodiq -v2

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%