Metadata-Version: 2.1
Name: Flask-CeleryExt
Version: 0.4.1
Summary: "Flask-CeleryExt is a simple integration layer between Celery and Flask."
Home-page: https://github.com/inveniosoftware/flask-celeryext
Author: CERN
Author-email: info@inveniosoftware.org
License: BSD
Keywords: flask celery
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.6
Requires-Dist: Flask (>=1.1)
Requires-Dist: celery (>=5.1.0)
Provides-Extra: tests
Requires-Dist: check-manifest (>=0.42) ; extra == 'tests'
Requires-Dist: coverage (<6,>=5.3) ; extra == 'tests'
Requires-Dist: docker-services-cli (>=0.4.0) ; extra == 'tests'
Requires-Dist: msgpack-python (>=0.5.6) ; extra == 'tests'
Requires-Dist: pytest-cov (>=3.0.0) ; extra == 'tests'
Requires-Dist: pytest-flask (>=1.2.0) ; extra == 'tests'
Requires-Dist: pytest-isort (>=3.0.0) ; extra == 'tests'
Requires-Dist: pytest-mock (>=2.0.0) ; extra == 'tests'
Requires-Dist: pytest-pycodestyle (>=2.2.0) ; extra == 'tests'
Requires-Dist: pytest-pydocstyle (>=2.2.0) ; extra == 'tests'
Requires-Dist: pytest (<7,>=6) ; extra == 'tests'
Requires-Dist: redis (>=4.1.4) ; extra == 'tests'
Requires-Dist: Sphinx (>=4.2.0) ; extra == 'tests'

=================
 Flask-CeleryExt
=================

.. image:: https://github.com/inveniosoftware/flask-celeryext/workflows/CI/badge.svg
        :target: https://github.com/inveniosoftware/flask-celeryext/actions

.. image:: https://img.shields.io/coveralls/inveniosoftware/flask-celeryext.svg
        :target: https://coveralls.io/r/inveniosoftware/flask-celeryext

.. image:: https://img.shields.io/github/tag/inveniosoftware/flask-celeryext.svg
        :target: https://github.com/inveniosoftware/flask-celeryext/releases

.. image:: https://img.shields.io/pypi/dm/flask-celeryext.svg
        :target: https://pypi.python.org/pypi/flask-celeryext

.. image:: https://img.shields.io/github/license/inveniosoftware/flask-celeryext.svg
        :target: https://github.com/inveniosoftware/flask-celeryext/blob/master/LICENSE

About
=====

Flask-CeleryExt is a simple integration layer between Celery and Flask.

Installation
============

Flask-CeleryExt is on PyPI so all you need is: ::

    pip install flask-celeryext

Documentation
=============

Documentation is readable at https://flask-celeryext.readthedocs.io/ or can be
build using Sphinx: ::

    pip install Sphinx
    python setup.py build_sphinx

Testing
=======

Running the test suite is as simple as: ::

    python setup.py test

Changes
=======

Version 0.4.1 (released 2022-03-17)

- Fixes celery mapping fo the configuration.

Version 0.4.0 (released 2022-03-15)

- Adds support for Python 3.9.
- Adds support for new Celery configuration variable naming.
- Drops support for Python 2.7 and 3.6 due to end of life.
- Drops support for Celery 3 and 4.

Version 0.3.4 (released 2020-02-17)

- Adds support for Python 3.8
- Fixes pin for Celery on Python <3.7.

Version 0.3.3 (released 2020-02-13)

- Fix celery version for Python < 3.7

Version 0.3.2 (released 2019-06-25)

- Uses correct Celery version for Python 3.7.
- Prevents multiple creation and pushing of Flask application contexts.

Version 0.3.1 (released 2018-03-26)

- Accounts for non-strict Celery versions.

Version 0.3.0 (released 2017-03-24)

- Adds support for Celery v4.

Version 0.2.2 (released 2016-11-07)

- Forces celery version to v3.1-4.0 due to problem with 4.x.

Version 0.2.1 (released 2016-07-25)

Improved features

- Improves documentation structure and its automatic generation.

Version 0.2.0 (released 2016-02-02)

Incompatible changes

- Changes celery application creation to use the default current
  celery application instead creating a new celery application. This
  addresses an issue with tasks using the shared_task decorator and
  having Flask-CeleryExt initialized multiple times.

Version 0.1.0 (released 2015-08-17)

- Initial public release


