km3pipe


Namekm3pipe JSON
Version 9.13.11 PyPI version JSON
download
home_pagehttps://git.km3net.de/km3py/km3pipe
Summary"An analysis framework for KM3NeT"
upload_time2023-09-04 08:23:24
maintainerTamas Gal
docs_urlNone
authorTamas Gal and Moritz Lotze
requires_python>=3.6
licenseMIT
keywords neutrino astroparticle physics hep pipeline
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            KM3Pipe
=======

.. image:: https://git.km3net.de/km3py/km3pipe/badges/master/pipeline.svg
    :target: https://git.km3net.de/km3py/km3pipe/pipelines

.. image:: https://git.km3net.de/km3py/km3pipe/badges/master/coverage.svg
    :target: https://km3py.pages.km3net.de/km3pipe/coverage

.. image:: https://api.codacy.com/project/badge/Grade/9df4849cb9f840289bf883de0dc8e28f
   :alt: Codacy Badge
   :target: https://app.codacy.com/app/tamasgal/km3pipe?utm_source=github.com&utm_medium=referral&utm_content=tamasgal/km3pipe&utm_campaign=Badge_Grade_Settings

.. image:: https://git.km3net.de/examples/km3badges/-/raw/master/docs-latest-brightgreen.svg
    :target: https://km3py.pages.km3net.de/km3pipe

.. image:: https://zenodo.org/badge/24634697.svg
   :target: https://doi.org/10.5281/zenodo.808829


KM3Pipe is a framework for KM3NeT related stuff including MC, data files, live
access to detectors and databases, parsers for different file formats and an
easy to use framework for batch processing.

The main Git repository, where issues and merge requests are managed can be
found at https://git.km3net.de/km3py/km3pipe.git

The framework tries to standardise the way the data is processed by providing
a Pipeline-class, which can be used to put together different built-in or user
made Pumps, Sinks and Modules. Pumps act as data readers/parsers (from files,
memory or even socket connections), Sinks are responsible for writing data to
disk and Modules take care of data processing, output and user interaction.
Such a Pipeline setup can then be used to iteratively process data in a file or
from a stream. In our case for example, we store several thousands of neutrino
interaction events in a bunch of files and KM3Pipe is used to stitch together
an analysis chain which processes each event one-by-one by passing them through
a pipeline of modules.

Although it is mainly designed for the KM3NeT neutrino detectors, it can easily
be extended to support any kind of data formats. The core functionality is
written in a general way and is applicable to all kinds of data processing
workflows.

To start off, run::

    pip install km3pipe

If you have Docker (https://www.docker.com) installed, you can start using
KM3Pipe immediately by typing::

    docker run -it docker.km3net.de/km3pipe

Feel free to get in touch if you’re looking for a small, versatile framework
which provides a quite straightforward module system to make code exchange
between your project members as easily as possible. KM3Pipe already comes with
several types of Pumps, so it should be easy to find an example to implement
your owns. As of version 8.0.0 you find Pumps and Sinks based on popular
formats like HDF5 (https://www.hdfgroup.org), ROOT (https://root.cern.ch) but
also some very specialised project internal binary data formats, which on the
other hand can act as templates for your own ones. Just have a look at the io
subpackage and of course the documentation if you’re interested!

Read the latest docs at https://km3py.pages.km3net.de/km3pipe.

KM3NeT public project homepage http://www.km3net.org

Acknowledgements
----------------

Thanks especially to the gracious help of all contributors:

Tamas Gal, Moritz Lotze, Johannes Schumann, Piotr Kalaczynski, Jonas Reubelt, Michael Moser, Thomas Heid, Alba Domi, Agustin Sanchez Losa, Zineb Aly, Jordan Seneca, Nicole Geisselbrecht, Javier Barrios, Valentin Pestel, Jannik Hofestaedt, Matthias Bissinger, Vladimir Kulikovskiy, Lukas Hennig



            

Raw data

            {
    "_id": null,
    "home_page": "https://git.km3net.de/km3py/km3pipe",
    "name": "km3pipe",
    "maintainer": "Tamas Gal",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "tgal@km3net.de",
    "keywords": "neutrino,astroparticle,physics,HEP,pipeline",
    "author": "Tamas Gal and Moritz Lotze",
    "author_email": "tgal@km3net.de",
    "download_url": "https://files.pythonhosted.org/packages/b7/7c/a179445b81ecc5757b368816980c287d323cf86f07b3e6b1b9d912ec881c/km3pipe-9.13.11.tar.gz",
    "platform": null,
    "description": "KM3Pipe\n=======\n\n.. image:: https://git.km3net.de/km3py/km3pipe/badges/master/pipeline.svg\n    :target: https://git.km3net.de/km3py/km3pipe/pipelines\n\n.. image:: https://git.km3net.de/km3py/km3pipe/badges/master/coverage.svg\n    :target: https://km3py.pages.km3net.de/km3pipe/coverage\n\n.. image:: https://api.codacy.com/project/badge/Grade/9df4849cb9f840289bf883de0dc8e28f\n   :alt: Codacy Badge\n   :target: https://app.codacy.com/app/tamasgal/km3pipe?utm_source=github.com&utm_medium=referral&utm_content=tamasgal/km3pipe&utm_campaign=Badge_Grade_Settings\n\n.. image:: https://git.km3net.de/examples/km3badges/-/raw/master/docs-latest-brightgreen.svg\n    :target: https://km3py.pages.km3net.de/km3pipe\n\n.. image:: https://zenodo.org/badge/24634697.svg\n   :target: https://doi.org/10.5281/zenodo.808829\n\n\nKM3Pipe is a framework for KM3NeT related stuff including MC, data files, live\naccess to detectors and databases, parsers for different file formats and an\neasy to use framework for batch processing.\n\nThe main Git repository, where issues and merge requests are managed can be\nfound at https://git.km3net.de/km3py/km3pipe.git\n\nThe framework tries to standardise the way the data is processed by providing\na Pipeline-class, which can be used to put together different built-in or user\nmade Pumps, Sinks and Modules. Pumps act as data readers/parsers (from files,\nmemory or even socket connections), Sinks are responsible for writing data to\ndisk and Modules take care of data processing, output and user interaction.\nSuch a Pipeline setup can then be used to iteratively process data in a file or\nfrom a stream. In our case for example, we store several thousands of neutrino\ninteraction events in a bunch of files and KM3Pipe is used to stitch together\nan analysis chain which processes each event one-by-one by passing them through\na pipeline of modules.\n\nAlthough it is mainly designed for the KM3NeT neutrino detectors, it can easily\nbe extended to support any kind of data formats. The core functionality is\nwritten in a general way and is applicable to all kinds of data processing\nworkflows.\n\nTo start off, run::\n\n    pip install km3pipe\n\nIf you have Docker (https://www.docker.com) installed, you can start using\nKM3Pipe immediately by typing::\n\n    docker run -it docker.km3net.de/km3pipe\n\nFeel free to get in touch if you\u2019re looking for a small, versatile framework\nwhich provides a quite straightforward module system to make code exchange\nbetween your project members as easily as possible. KM3Pipe already comes with\nseveral types of Pumps, so it should be easy to find an example to implement\nyour owns. As of version 8.0.0 you find Pumps and Sinks based on popular\nformats like HDF5 (https://www.hdfgroup.org), ROOT (https://root.cern.ch) but\nalso some very specialised project internal binary data formats, which on the\nother hand can act as templates for your own ones. Just have a look at the io\nsubpackage and of course the documentation if you\u2019re interested!\n\nRead the latest docs at https://km3py.pages.km3net.de/km3pipe.\n\nKM3NeT public project homepage http://www.km3net.org\n\nAcknowledgements\n----------------\n\nThanks especially to the gracious help of all contributors:\n\nTamas Gal, Moritz Lotze, Johannes Schumann, Piotr Kalaczynski, Jonas Reubelt, Michael Moser, Thomas Heid, Alba Domi, Agustin Sanchez Losa, Zineb Aly, Jordan Seneca, Nicole Geisselbrecht, Javier Barrios, Valentin Pestel, Jannik Hofestaedt, Matthias Bissinger, Vladimir Kulikovskiy, Lukas Hennig\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "\"An analysis framework for KM3NeT\"",
    "version": "9.13.11",
    "project_urls": {
        "Homepage": "https://git.km3net.de/km3py/km3pipe"
    },
    "split_keywords": [
        "neutrino",
        "astroparticle",
        "physics",
        "hep",
        "pipeline"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52a8d63a1be0417c8a599e775a8298e1504e87997d23b1033246cb9e2e173e6c",
                "md5": "e6e882853f9296550cd332242bbbfa48",
                "sha256": "3addeaa5281b5d6e925dedbf8e832c0e8eea20c26425fa3f50272fffad9c9e7d"
            },
            "downloads": -1,
            "filename": "km3pipe-9.13.11-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e6e882853f9296550cd332242bbbfa48",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 206892,
            "upload_time": "2023-09-04T08:23:21",
            "upload_time_iso_8601": "2023-09-04T08:23:21.293750Z",
            "url": "https://files.pythonhosted.org/packages/52/a8/d63a1be0417c8a599e775a8298e1504e87997d23b1033246cb9e2e173e6c/km3pipe-9.13.11-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b77ca179445b81ecc5757b368816980c287d323cf86f07b3e6b1b9d912ec881c",
                "md5": "1af8e3c4266999d66081b104782ccacc",
                "sha256": "b4a363709f608b462821ebb8c989f6bbd50bea0d6d5836e00c10e93ea621210f"
            },
            "downloads": -1,
            "filename": "km3pipe-9.13.11.tar.gz",
            "has_sig": false,
            "md5_digest": "1af8e3c4266999d66081b104782ccacc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 366437,
            "upload_time": "2023-09-04T08:23:24",
            "upload_time_iso_8601": "2023-09-04T08:23:24.277592Z",
            "url": "https://files.pythonhosted.org/packages/b7/7c/a179445b81ecc5757b368816980c287d323cf86f07b3e6b1b9d912ec881c/km3pipe-9.13.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-04 08:23:24",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "km3pipe"
}
        
Elapsed time: 0.12262s