quartet_capture


Namequartet_capture JSON
Version 4.0.0 PyPI version JSON
download
home_pagehttps://gitlab.com/serial-lab/quartet_capture
SummaryA capture and queuing interface for QU4RTET.
upload_time2024-02-19 21:39:14
maintainerNone
docs_urlNone
authorRob Magee
requires_pythonNone
licenseGPLv3
keywords quartet_capture qu4rtet epcis open-source
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            --------------
QU4TET CAPTURE
--------------

.. image:: https://gitlab.com/serial-lab/quartet_capture/badges/master/pipeline.svg
        :target: https://gitlab.com/serial-lab/quartet_capture/commits/master

.. image:: https://gitlab.com/serial-lab/quartet_capture/badges/master/coverage.svg
        :target: https://gitlab.com/serial-lab/quartet_capture/pipelines

.. image:: https://badge.fury.io/py/quartet_capture.svg
    :target: https://badge.fury.io/py/quartet_capture

.. code-block:: text

         .d8888b.      d8888  8888888b. 88888888888 888     888 8888888b.  8888888888
        d88P  Y88b    d8P888  888   Y88b    888     888     888 888   Y88b 888
        888    888   d8P 888  888    888    888     888     888 888    888 888
        888         d8P  888  888   d88P    888     888     888 888   d88P 8888888
        888        d88   888  8888888P"     888     888     888 8888888P"  888
        888    888 8888888888 888           888     888     888 888 T88b   888
        Y88b  d88P       888  888           888     Y88b. .d88P 888  T88b  888
         "Y8888P"        888  888           888      "Y88888P"  888   T88b 8888888888

A capture and queuing interface for the QU4RTET open source EPCIS platform.
This package defines the
generic structure of the QU4RTET rule engine and defines the base classes
necessary for use when extending the functionality of QU4RTET.

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

The full documentation here includes an overall explanation and example of
implementing rules and steps along with installation instructions:

https://serial-lab.gitlab.io/quartet_capture

Quickstart
==========

Install quartet_capture

.. code-block:: text

    pip install quartet_capture

Add it to your `INSTALLED_APPS`:

.. code-block:: text

    INSTALLED_APPS = (
        ...
        'quartet_capture.apps.QuartetCaptureConfig',
        ...
    )

Add quartet_capture's URL patterns:

.. code-block:: text

    from quartet_capture import urls as quartet_capture_urls

    urlpatterns = [
        ...
        url(r'^', include(quartet_capture_urls)),
        ...
    ]

Features
========

* Accepts inbound HTTP Post messages and queues them up for processing.
* Stores inbound messages in RabbitMQ backend for processing with the Celery Task Queue.
* Keeps track of messages and their processing state.

Running The Unit Tests
======================

.. code-block:: text

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ python runtests.py


            

Raw data

            {
    "_id": null,
    "home_page": "https://gitlab.com/serial-lab/quartet_capture",
    "name": "quartet_capture",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "quartet_capture QU4RTET EPCIS open-source",
    "author": "Rob Magee",
    "author_email": "slab@serial-lab.com",
    "download_url": "https://files.pythonhosted.org/packages/27/41/b81a77c2bcf357fb9259bbc0fd30dc9b9accc7c00f627e915aa6a3306ed3/quartet_capture-4.0.0.tar.gz",
    "platform": null,
    "description": "--------------\nQU4TET CAPTURE\n--------------\n\n.. image:: https://gitlab.com/serial-lab/quartet_capture/badges/master/pipeline.svg\n        :target: https://gitlab.com/serial-lab/quartet_capture/commits/master\n\n.. image:: https://gitlab.com/serial-lab/quartet_capture/badges/master/coverage.svg\n        :target: https://gitlab.com/serial-lab/quartet_capture/pipelines\n\n.. image:: https://badge.fury.io/py/quartet_capture.svg\n    :target: https://badge.fury.io/py/quartet_capture\n\n.. code-block:: text\n\n         .d8888b.      d8888  8888888b. 88888888888 888     888 8888888b.  8888888888\n        d88P  Y88b    d8P888  888   Y88b    888     888     888 888   Y88b 888\n        888    888   d8P 888  888    888    888     888     888 888    888 888\n        888         d8P  888  888   d88P    888     888     888 888   d88P 8888888\n        888        d88   888  8888888P\"     888     888     888 8888888P\"  888\n        888    888 8888888888 888           888     888     888 888 T88b   888\n        Y88b  d88P       888  888           888     Y88b. .d88P 888  T88b  888\n         \"Y8888P\"        888  888           888      \"Y88888P\"  888   T88b 8888888888\n\nA capture and queuing interface for the QU4RTET open source EPCIS platform.\nThis package defines the\ngeneric structure of the QU4RTET rule engine and defines the base classes\nnecessary for use when extending the functionality of QU4RTET.\n\nDocumentation\n=============\n\nThe full documentation here includes an overall explanation and example of\nimplementing rules and steps along with installation instructions:\n\nhttps://serial-lab.gitlab.io/quartet_capture\n\nQuickstart\n==========\n\nInstall quartet_capture\n\n.. code-block:: text\n\n    pip install quartet_capture\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: text\n\n    INSTALLED_APPS = (\n        ...\n        'quartet_capture.apps.QuartetCaptureConfig',\n        ...\n    )\n\nAdd quartet_capture's URL patterns:\n\n.. code-block:: text\n\n    from quartet_capture import urls as quartet_capture_urls\n\n    urlpatterns = [\n        ...\n        url(r'^', include(quartet_capture_urls)),\n        ...\n    ]\n\nFeatures\n========\n\n* Accepts inbound HTTP Post messages and queues them up for processing.\n* Stores inbound messages in RabbitMQ backend for processing with the Celery Task Queue.\n* Keeps track of messages and their processing state.\n\nRunning The Unit Tests\n======================\n\n.. code-block:: text\n\n    source <YOURVIRTUALENV>/bin/activate\n    (myenv) $ python runtests.py\n\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "A capture and queuing interface for QU4RTET.",
    "version": "4.0.0",
    "project_urls": {
        "Homepage": "https://gitlab.com/serial-lab/quartet_capture"
    },
    "split_keywords": [
        "quartet_capture",
        "qu4rtet",
        "epcis",
        "open-source"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4866294e42485867c9c0c7c22461f101878d52b8046b830a6e5d25e550cd4f36",
                "md5": "1549049b9b4db8917346617392e362df",
                "sha256": "d0bb956155e112e8d353ac1dcc5165b390ad158e803356cb8b392e897fd428a3"
            },
            "downloads": -1,
            "filename": "quartet_capture-4.0.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1549049b9b4db8917346617392e362df",
            "packagetype": "bdist_wheel",
            "python_version": "3.6",
            "requires_python": null,
            "size": 67669,
            "upload_time": "2024-02-19T21:39:16",
            "upload_time_iso_8601": "2024-02-19T21:39:16.342011Z",
            "url": "https://files.pythonhosted.org/packages/48/66/294e42485867c9c0c7c22461f101878d52b8046b830a6e5d25e550cd4f36/quartet_capture-4.0.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2741b81a77c2bcf357fb9259bbc0fd30dc9b9accc7c00f627e915aa6a3306ed3",
                "md5": "8bfee536880a06c432d7ceb609ad6f6f",
                "sha256": "3d59d5de696f6eed505b994e9bdcf6fe1a2d74f5754c601bf5ba66f3cc0c9dd5"
            },
            "downloads": -1,
            "filename": "quartet_capture-4.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8bfee536880a06c432d7ceb609ad6f6f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 49018,
            "upload_time": "2024-02-19T21:39:14",
            "upload_time_iso_8601": "2024-02-19T21:39:14.259674Z",
            "url": "https://files.pythonhosted.org/packages/27/41/b81a77c2bcf357fb9259bbc0fd30dc9b9accc7c00f627e915aa6a3306ed3/quartet_capture-4.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-19 21:39:14",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "serial-lab",
    "gitlab_project": "quartet_capture",
    "lcname": "quartet_capture"
}
        
Elapsed time: 0.19478s