django-async

Asynchronous task execution with proper database transaction management for Django
Download

django-async Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Boost Software Licen...
  • Price:
  • FREE
  • Publisher Name:
  • Kirit Saelensminde
  • Publisher web site:
  • https://github.com/KayEss/

django-async Tags


django-async Description

django-async is an asynchronous execution queue for Django with proper database transaction management.Building a database backed task queue is a fairly trivial thing, but getting the database transactions exactly right is no simple matter.Using Django AsyncInstallation is very simple, just add the ``async`` application to your Django applications in ``settings.py``.To run a job asynchronously just use the ``schedule`` function: from async import schedule schedule('my.function', args=(1, 2, 3), kwargs=dict(key='value'))Tasks can be run by executing the management command ``flush_queue``: python manage.py flush_queue``flush_queue`` will run once through the jobs that are scheduled to run at that time, but will exit early if any job throws an exception. Normally you would use it from an external script that simply keeps re-running the command.Product's homepage


django-async Related Software