scikit-ued


Namescikit-ued JSON
Version 2.1.15 PyPI version JSON
download
home_pagehttp://scikit-ued.readthedocs.io
SummaryCollection of algorithms and functions for ultrafast electron scattering
upload_time2024-05-01 13:46:22
maintainerLaurent P. René de Cotret
docs_urlNone
authorLaurent P. René de Cotret
requires_python>=3.7
licenseGPLv3
keywords ultrafast electron scattering
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            scikit-ued
==========

[![Documentation Build Status](https://readthedocs.org/projects/scikit-ued/badge/?version=master)](http://scikit-ued.readthedocs.io) [![PyPI Version](https://img.shields.io/pypi/v/scikit-ued.svg)](https://pypi.org/project/scikit-ued/) [![Conda-forge Version](https://img.shields.io/conda/vn/conda-forge/scikit-ued.svg)](https://anaconda.org/conda-forge/scikit-ued) [![DOI badge](https://img.shields.io/badge/DOI-10.1186%2Fs40679--018--0060--y-blue)](https://doi.org/10.1186/s40679-018-0060-y)

Collection of algorithms and functions for ultrafast electron diffraction. It aims to be a fully-tested package taking advantage of Python's most recent features.

For examples, see our [tutorials](https://scikit-ued.readthedocs.io/).

API Reference
-------------

The [API Reference on readthedocs.io](https://scikit-ued.readthedocs.io) provides API-level documentation, as well as tutorials.

Installation
------------

scikit-ued is available on PyPI; it can be installed with [pip](https://pip.pypa.io):

    python -m pip install scikit-ued

To also install optional dependencies required to view diffraction images interactively:

    python -m pip install scikit-ued[diffshow]

scikit-ued is also available on the conda-forge channel for the [conda package manager](https://conda.io/docs/):

    conda config --add channels conda-forge
    conda install scikit-ued

To install the latest development version from [Github](https://github.com/LaurentRDC/scikit-ued):

    python -m pip install git+https://github.com/LaurentRDC/scikit-ued.git

After installing scikit-ued you can use it like any other Python module
as `skued`.

Each version is tested against **Python 3.7+**. If you are using a
different version, tests can be run using the `pytest` package.

Optional dependencies
---------------------

For displaying diffraction images with interactive contrast using the
`skued.diffshow` function, PyQtGraph is required.

Contributing
------------

If you want to contribute to `scikit-ued`, take a look at [`CONTRIBUTING.md`](https://github.com/LaurentRDC/scikit-ued/blob/master/CONTRIBUTING.md).

Related projects
----------------

Streaming operations on NumPy arrays are available in the [npstreams package](https://pypi.org/pypi/npstreams).

Interactive exploration of ultrafast electron diffraction data with the [iris-ued package](https://pypi.org/project/iris-ued/).

Crystal structure manipulation (including symmetry-determination) with the [crystals package](https://pypi.org/project/crystals/). (Included
with scikit-ued)

A graphical user interface for the dual-tree complex wavelet transform
baseline-removal routine is available as a [separate package](https://pypi.org/pypi/dtgui).

Citations
---------

If you find this software useful, please consider citing the following
publication:

> L. P. René de Cotret, M. R. Otto, M. J. Stern. and B. J. Siwick, *An open-source software ecosystem for the interactive exploration of ultrafast electron scattering data*, Advanced Structural and Chemical Imaging 4:11 (2018) [DOI: 10.1186/s40679-018-0060-y.](https://ascimaging.springeropen.com/articles/10.1186/s40679-018-0060-y)

If you are using the baseline-removal functionality of scikit-ued,
please consider citing the following publication:

> L. P. René de Cotret and B. J. Siwick, *A general method for baseline-removal in ultrafast electron powder diffraction data using the dual-tree complex wavelet transform*, Struct. Dyn. 4 (2017) [DOI: 10.1063/1.4972518](https://doi.org/10.1063/1.4972518).


Support / Report Issues
-----------------------

All support requests and issue reports should be [filed on Github as an issue](https://github.com/LaurentRDC/scikit-ued/issues).

License
-------

scikit-ued is made available under the GPLv3 License. For more details,
see [LICENSE.txt](https://github.com/LaurentRDC/scikit-ued/blob/master/LICENSE.txt).



            

Raw data

            {
    "_id": null,
    "home_page": "http://scikit-ued.readthedocs.io",
    "name": "scikit-ued",
    "maintainer": "Laurent P. Ren\u00e9 de Cotret",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "laurent.renedecotret@mail.mcgill.ca",
    "keywords": "ultrafast electron scattering",
    "author": "Laurent P. Ren\u00e9 de Cotret",
    "author_email": "laurent.renedecotret@mail.mcgill.ca",
    "download_url": "https://files.pythonhosted.org/packages/f5/fe/4a2c07ca7f66ff3221ee160be4dc3f46a4a3433aa1b54d37a4d256dcb423/scikit-ued-2.1.15.tar.gz",
    "platform": null,
    "description": "scikit-ued\n==========\n\n[![Documentation Build Status](https://readthedocs.org/projects/scikit-ued/badge/?version=master)](http://scikit-ued.readthedocs.io) [![PyPI Version](https://img.shields.io/pypi/v/scikit-ued.svg)](https://pypi.org/project/scikit-ued/) [![Conda-forge Version](https://img.shields.io/conda/vn/conda-forge/scikit-ued.svg)](https://anaconda.org/conda-forge/scikit-ued) [![DOI badge](https://img.shields.io/badge/DOI-10.1186%2Fs40679--018--0060--y-blue)](https://doi.org/10.1186/s40679-018-0060-y)\n\nCollection of algorithms and functions for ultrafast electron diffraction. It aims to be a fully-tested package taking advantage of Python's most recent features.\n\nFor examples, see our [tutorials](https://scikit-ued.readthedocs.io/).\n\nAPI Reference\n-------------\n\nThe [API Reference on readthedocs.io](https://scikit-ued.readthedocs.io) provides API-level documentation, as well as tutorials.\n\nInstallation\n------------\n\nscikit-ued is available on PyPI; it can be installed with [pip](https://pip.pypa.io):\n\n    python -m pip install scikit-ued\n\nTo also install optional dependencies required to view diffraction images interactively:\n\n    python -m pip install scikit-ued[diffshow]\n\nscikit-ued is also available on the conda-forge channel for the [conda package manager](https://conda.io/docs/):\n\n    conda config --add channels conda-forge\n    conda install scikit-ued\n\nTo install the latest development version from [Github](https://github.com/LaurentRDC/scikit-ued):\n\n    python -m pip install git+https://github.com/LaurentRDC/scikit-ued.git\n\nAfter installing scikit-ued you can use it like any other Python module\nas `skued`.\n\nEach version is tested against **Python 3.7+**. If you are using a\ndifferent version, tests can be run using the `pytest` package.\n\nOptional dependencies\n---------------------\n\nFor displaying diffraction images with interactive contrast using the\n`skued.diffshow` function, PyQtGraph is required.\n\nContributing\n------------\n\nIf you want to contribute to `scikit-ued`, take a look at [`CONTRIBUTING.md`](https://github.com/LaurentRDC/scikit-ued/blob/master/CONTRIBUTING.md).\n\nRelated projects\n----------------\n\nStreaming operations on NumPy arrays are available in the [npstreams package](https://pypi.org/pypi/npstreams).\n\nInteractive exploration of ultrafast electron diffraction data with the [iris-ued package](https://pypi.org/project/iris-ued/).\n\nCrystal structure manipulation (including symmetry-determination) with the [crystals package](https://pypi.org/project/crystals/). (Included\nwith scikit-ued)\n\nA graphical user interface for the dual-tree complex wavelet transform\nbaseline-removal routine is available as a [separate package](https://pypi.org/pypi/dtgui).\n\nCitations\n---------\n\nIf you find this software useful, please consider citing the following\npublication:\n\n> L. P. Ren\u00e9 de Cotret, M. R. Otto, M. J. Stern. and B. J. Siwick, *An open-source software ecosystem for the interactive exploration of ultrafast electron scattering data*, Advanced Structural and Chemical Imaging 4:11 (2018) [DOI: 10.1186/s40679-018-0060-y.](https://ascimaging.springeropen.com/articles/10.1186/s40679-018-0060-y)\n\nIf you are using the baseline-removal functionality of scikit-ued,\nplease consider citing the following publication:\n\n> L. P. Ren\u00e9 de Cotret and B. J. Siwick, *A general method for baseline-removal in ultrafast electron powder diffraction data using the dual-tree complex wavelet transform*, Struct. Dyn. 4 (2017) [DOI: 10.1063/1.4972518](https://doi.org/10.1063/1.4972518).\n\n\nSupport / Report Issues\n-----------------------\n\nAll support requests and issue reports should be [filed on Github as an issue](https://github.com/LaurentRDC/scikit-ued/issues).\n\nLicense\n-------\n\nscikit-ued is made available under the GPLv3 License. For more details,\nsee [LICENSE.txt](https://github.com/LaurentRDC/scikit-ued/blob/master/LICENSE.txt).\n\n\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "Collection of algorithms and functions for ultrafast electron scattering",
    "version": "2.1.15",
    "project_urls": {
        "Documentation": "https://scikit-ued.readthedocs.io/",
        "Download": "http://github.com/LaurentRDC/scikit-ued",
        "Homepage": "http://scikit-ued.readthedocs.io",
        "Source": "https://github.com/LaurentRDC/scikit-ued"
    },
    "split_keywords": [
        "ultrafast",
        "electron",
        "scattering"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d0fc927c22fcb40c3b497c868e6041fcc96efd98fcf7e1348c3898b5e74f809",
                "md5": "3768f5248142f515363cec4b18d4dd8a",
                "sha256": "93b1ba4229e8110a9d884ab4487a818c8b1e3360504878fd10a71c19be1afe6f"
            },
            "downloads": -1,
            "filename": "scikit_ued-2.1.15-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3768f5248142f515363cec4b18d4dd8a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 294141,
            "upload_time": "2024-05-01T13:46:20",
            "upload_time_iso_8601": "2024-05-01T13:46:20.642546Z",
            "url": "https://files.pythonhosted.org/packages/6d/0f/c927c22fcb40c3b497c868e6041fcc96efd98fcf7e1348c3898b5e74f809/scikit_ued-2.1.15-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5fe4a2c07ca7f66ff3221ee160be4dc3f46a4a3433aa1b54d37a4d256dcb423",
                "md5": "23e5156efad5b5fc9463fbf4eaa03556",
                "sha256": "635769dd5f24b1b9e1349e773f530e6a2ab2d60413359c78521420233dde7d49"
            },
            "downloads": -1,
            "filename": "scikit-ued-2.1.15.tar.gz",
            "has_sig": false,
            "md5_digest": "23e5156efad5b5fc9463fbf4eaa03556",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 265347,
            "upload_time": "2024-05-01T13:46:22",
            "upload_time_iso_8601": "2024-05-01T13:46:22.254203Z",
            "url": "https://files.pythonhosted.org/packages/f5/fe/4a2c07ca7f66ff3221ee160be4dc3f46a4a3433aa1b54d37a4d256dcb423/scikit-ued-2.1.15.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-01 13:46:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "LaurentRDC",
    "github_project": "scikit-ued",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "scikit-ued"
}
        
Elapsed time: 0.25958s