Metadata-Version: 2.4
Name: django-kcommunication
Version: 1.2.2
Summary: Communication helpers and background task management for Huey queue.
Home-page: https://github.com/kajalagroup/communication
Author: Tuan Bach Van
Author-email: tuan@kajala.com
License: MIT licence, see LICENCE.txt
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: Django>=3.2.7
Requires-Dist: django-jutil>=3.8.14
Requires-Dist: redis>=3.5.3
Requires-Dist: huey>=2.3.2
Requires-Dist: django-redis>=5.0.0
Requires-Dist: python-dotenv>=0.18.0
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# background-task

Background tasks management for HUEY queue.

## Install

```
pip install django-kcommunication
```

## Usage:

Add "kcommunication" and "kbackgroundtask" to app list:


```
INSTALLED_APPS = [
    "kcommunication",
    "kbackgroundtask"
]
```
