Metadata-Version: 2.1
Name: workflows
Version: 1.7
Summary: Data processing in distributed environments
Home-page: https://github.com/DiamondLightSource/python-workflows
Author: Markus Gerstel
Author-email: scientificsoftware@diamond.ac.uk
License: BSD
Download-URL: https://github.com/DiamondLightSource/python-workflows/releases
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: setuptools
Requires-Dist: six
Requires-Dist: stomp.py
Requires-Dist: enum34 ; python_version < "3.4"

=========
Workflows
=========

.. image:: https://img.shields.io/pypi/v/workflows.svg
        :target: https://pypi.python.org/pypi/workflows
        :alt: PyPI release

.. image:: https://img.shields.io/conda/vn/conda-forge/workflows.svg
        :target: https://anaconda.org/conda-forge/workflows
        :alt: Conda version

.. image:: https://img.shields.io/pypi/l/workflows.svg
        :target: https://pypi.python.org/pypi/workflows
        :alt: BSD license

.. image:: https://img.shields.io/travis/DiamondLightSource/python-workflows.svg
        :target: https://travis-ci.org/DiamondLightSource/python-workflows
        :alt: Build status

.. image:: https://img.shields.io/pypi/pyversions/workflows.svg
        :target: https://pypi.org/project/workflows/
        :alt: Supported Python versions

.. image:: https://pyup.io/repos/github/DiamondLightSource/python-workflows/shield.svg
        :target: https://pyup.io/repos/github/DiamondLightSource/python-workflows/
        :alt: Updates

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
        :target: https://github.com/ambv/black
        :alt: Code style: black

.. image:: https://img.shields.io/lgtm/grade/python/g/DiamondLightSource/python-workflows.svg?logo=lgtm&logoWidth=18
        :target: https://lgtm.com/projects/g/DiamondLightSource/python-workflows/context:python
        :alt: Language grade: Python

.. image:: https://img.shields.io/lgtm/alerts/g/DiamondLightSource/python-workflows.svg?logo=lgtm&logoWidth=18
        :target: https://lgtm.com/projects/g/DiamondLightSource/python-workflows/alerts/
        :alt: Total alerts

Workflows enables light-weight services to process tasks in a message-oriented
environment.

It is comprised of a communications layer (workflows.transport) that provides a
common interface to queues and topics over different transport providers, a
service abstraction layer (workflows.frontend) which encapsulates a service in
a separate process, tools for status reporting, logging and controlling
services via a transport mechanism, and a service class skeleton alongside
example services (workflows.services.common_service et al.).
To achieve more complex workflows services can be interconnected using
`recipes`_ whereby the output of one service can be directed
onwards to other services.

.. _recipes: https://github.com/DiamondLightSource/python-workflows/tree/master/workflows/recipe/README.MD


