Flask-Worker simplifies interaction with a Redis Queue for executing long-running tasks in a Flask application.
Project description
Flask-Worker simplifies interaction with a Redis Queue for executing long-running tasks in a Flask application.
Long-running tasks are managed by a Worker, who sends the client a loading page until it completes the task. Upon completing the task, the Worker automatically replaces the client's window with the loaded page.
Why Flask-Worker
Suppose we have a view function which needs to execute a complex task before the client can view the page. What we want is for the complex task to run once, and for the view function to return a loading page while the complex task is running. Our first pass might be:
@app.route('/')
def index():
return complex_task()
Unfortunately, the view function executes the complex task every time it is called. To make matters worse, the client has no indication that the complex task is in progress. Each time the client tries to refresh the page, the complex task is queued up again.
Flask-Worker solves this problem. We set up a Worker:
class Worker(WorkerMixin, db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String)
def __init__(self, name):
self.name = name
self.set(complex_task)
super().__init__()
And call it in a view function:
@app.route('/')
def index():
worker = get_model(Worker, name='index')
return worker.result if worker.job_finished else worker()
See the tutorial for a complete example.
Installation
$ pip install flask-worker
Citation
@software{bowen2020flask-worker,
author = {Dillon Bowen},
title = {Flask-Worker},
url = {https://dsbowen.github.io/flask-worker/},
date = {2020-06-15},
}
License
Users must cite this package in any publications which use it.
It is licensed with the MIT License.
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
Built Distribution
File details
Details for the file flask-worker-0.0.14.tar.gz
.
File metadata
- Download URL: flask-worker-0.0.14.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f44250fd721aa2886fd57775cd26649aab23ff910308873128a762e1e821fb6a |
|
MD5 | bd5699ef8fb17ff18a4bc66b053b0996 |
|
BLAKE2b-256 | 5620d65c6bd69e6cc169077b8fd66a7cc26df3ca4b4de6b713f09f67597ffb44 |
File details
Details for the file flask_worker-0.0.14-py3-none-any.whl
.
File metadata
- Download URL: flask_worker-0.0.14-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d83ede525d0fa5521df33fd05e00b68a87264226fe7c9ee0f30178caba4bc5f |
|
MD5 | 5cc461575752fcd4e94a8e3f7fa62bce |
|
BLAKE2b-256 | 75afc1118fb26d37784b8d061e734bf3003ca7a13b17ddcd7764f7ec423b0829 |