
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
django-celery-progressbar
Advanced tools
.. image:: https://travis-ci.org/mora9715/django-celery-progressbar.svg?branch=master :target: https://travis-ci.org/mora9715/django-celery-progressbar
.. image:: https://badge.fury.io/py/django-celery-progressbar.svg :target: https://badge.fury.io/py/django-celery-progressbar
Simple progressbar for a Django application with Celery. Uses database as a temporary storage.
Installation is as simple as installing a package from PyPi and applying migrations::
$ pip install django-celery-progresbar
$ python manage.py migrate django_celery_progressbar
Typical usage on the side of Celery task would look like:
.. code-block:: python
from django_celery_progressbar.bars import ProgressBar
from celery import shared_task
@shared_task
def do_something():
bar = ProgressBar(
task_id=do_something.request.id,
total=10,
step='Drying kelp...'
)
some_work()
bar.update(
progress='5',
step='Making sushi...'
)
some_more_work()
bar.progress.finalize()
To retireve current progressbar state, you can use built-in getter:
.. code-block:: python
from django_celery_progressbar.bars import ProgressBar
bar = ProgressBar.get(task_id)
print(bar)
>>> 5 / 10 | Drying kelp...
# or as percent:
print(bar.as_percent)
>>> 50.0%
Keep in mind: as ProgressBar fetches DB object on creation, it is not updated dynamically.
The following default settings can be overridden in your settings.py:
.. code-block:: python
PROGRESSBAR_DEFAULT_TOTAL = 100
PROGRESSBAR_DESTROY_ON_EXIT = False
PROGRESSBAR_DYNAMIC_UPDATE = False
PROGRESSBAR_DEFAULT_TOTAL - Default value for 'Total' progressbar attribute PROGRESSBAR_DESTROY_ON_EXIT - Destroy model object on task completion PROGRESSBAR_DYNAMIC_UPDATE - Dynamically update progressbar DB object in runtime. You don't need it turned on in stateless apps
FAQs
Progress bar for Django Celery application
We found that django-celery-progressbar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.