Metadata-Version: 2.1
Name: celery_explorer
Version: 0.2
Summary: A Django app for managing celery tasks.
Author-email: Your Name <yourname@example.com>
Project-URL: Homepage, https://www.example.com/
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: django>=3.2
Requires-Dist: celery>=4.0

===============
celery_explorer
===============

Simple manager for starting celery tasks

Quick start
-----------

1. Add "celery_explorer" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "celery_explorer",
    ]

2. Include the polls URLconf in your project urls.py like this::

    path("celery_explorer/", include("celery_explorer.urls")),


3. Visit the ``/celery_explorer/`` URL to see manger panel.
