dclab


Namedclab JSON
Version 0.62.10 PyPI version JSON
download
home_pageNone
SummaryLibrary for real-time deformability cytometry (RT-DC)
upload_time2025-01-07 10:02:36
maintainerNone
docs_urlNone
authorBenedikt Hartmann, Eoghan O'Connell, Maik Herbig, Maximilian Schlögel, Nadia Sbaa, Paul Müller, Philipp Rosendahl, Raghava Alajangi
requires_python<4,>=3.8
licenseGPL version 2.0 or later
keywords rt-dc deformability cytometry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |dclab|
=======

|PyPI Version| |Build Status| |Coverage Status| |Docs Status|


This is a Python library for the post-measurement analysis of
real-time deformability cytometry (RT-DC) datasets; an essential part of
`Shape-Out <https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2>`__.

Documentation
-------------
The documentation, including the code reference and examples, is available at
`dclab.readthedocs.io <https://dclab.readthedocs.io/en/stable/>`__.


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

::

    pip install dclab[all]

For more options, please check out the `documentation
<https://dclab.readthedocs.io/en/latest/sec_getting_started.html#installation>`__.


Information for developers
--------------------------


Contributing
~~~~~~~~~~~~
The main branch for developing dclab is master.
If you want to make small changes like one-liners,
documentation, or default values in the configuration,
you may work on the master branch. If you want to change
more, please (fork dclab and) create a separate branch,
e.g. ``my_new_feature_dev``, and create a pull-request
once you are done making your changes.
Please make sure to edit the 
`Changelog <https://github.com/DC-analysis/dclab/blob/master/CHANGELOG>`__.

**Very important:** Please always try to use ::


    git pull --rebase

instead of::

    git pull

to prevent non-linearities in the commit history.

Tests
~~~~~
dclab is tested using pytest. If you have the time, please write test
methods for your code and put them in the ``tests`` directory. To run
the tests, install `pytest` and run::

    pytest tests


Docs
~~~~
The docs are built with `sphinx <https://www.sphinx-doc.org>`_. Please make
sure they compile when you change them (this also includes function doc strings)::

    cd docs
    pip install -r requirements.txt
    sphinx-build . _build  # open "index.html" in the "_build" directory


PEP8
~~~~
We use flake8 to enforce coding style::

    pip install flake8
    flake8 --exclude _version.py dclab
    flake8 docs
    flake8 examples
    flake8 tests


Incrementing version
~~~~~~~~~~~~~~~~~~~~
Dclab gets its version from the latest git tag.
If you think that a new version should be published,
create a tag on the master branch (if you have the necessary
permissions to do so)::

    git tag -a "0.1.3"
    git push --tags origin

Appveyor and GitHub Actions will then automatically build source package and wheels
and publish them on PyPI.


.. |dclab| image:: https://raw.github.com/DC-analysis/dclab/master/docs/logo/dclab.png
.. |PyPI Version| image:: https://img.shields.io/pypi/v/dclab.svg
   :target: https://pypi.python.org/pypi/dclab
.. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/DC-analysis/dclab/check.yml
   :target: https://github.com/DC-analysis/dclab/actions?query=workflow%3AChecks
.. |Coverage Status| image:: https://img.shields.io/codecov/c/github/DC-analysis/dclab/master.svg
   :target: https://codecov.io/gh/DC-analysis/dclab
.. |Docs Status| image:: https://readthedocs.org/projects/dclab/badge/?version=latest
   :target: https://readthedocs.org/projects/dclab/builds/

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "dclab",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.8",
    "maintainer_email": "Paul M\u00fcller <dev@craban.de>",
    "keywords": "RT-DC, deformability, cytometry",
    "author": "Benedikt Hartmann, Eoghan O'Connell, Maik Herbig, Maximilian Schl\u00f6gel, Nadia Sbaa, Paul M\u00fcller, Philipp Rosendahl, Raghava Alajangi",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/b1/23/7e58c3534afa74e689e014ffe48377889397952f96cf150a5eabd8c38979/dclab-0.62.10.tar.gz",
    "platform": null,
    "description": "|dclab|\n=======\n\n|PyPI Version| |Build Status| |Coverage Status| |Docs Status|\n\n\nThis is a Python library for the post-measurement analysis of\nreal-time deformability cytometry (RT-DC) datasets; an essential part of\n`Shape-Out <https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2>`__.\n\nDocumentation\n-------------\nThe documentation, including the code reference and examples, is available at\n`dclab.readthedocs.io <https://dclab.readthedocs.io/en/stable/>`__.\n\n\nInstallation\n------------\n\n::\n\n    pip install dclab[all]\n\nFor more options, please check out the `documentation\n<https://dclab.readthedocs.io/en/latest/sec_getting_started.html#installation>`__.\n\n\nInformation for developers\n--------------------------\n\n\nContributing\n~~~~~~~~~~~~\nThe main branch for developing dclab is master.\nIf you want to make small changes like one-liners,\ndocumentation, or default values in the configuration,\nyou may work on the master branch. If you want to change\nmore, please (fork dclab and) create a separate branch,\ne.g. ``my_new_feature_dev``, and create a pull-request\nonce you are done making your changes.\nPlease make sure to edit the \n`Changelog <https://github.com/DC-analysis/dclab/blob/master/CHANGELOG>`__.\n\n**Very important:** Please always try to use ::\n\n\n    git pull --rebase\n\ninstead of::\n\n    git pull\n\nto prevent non-linearities in the commit history.\n\nTests\n~~~~~\ndclab is tested using pytest. If you have the time, please write test\nmethods for your code and put them in the ``tests`` directory. To run\nthe tests, install `pytest` and run::\n\n    pytest tests\n\n\nDocs\n~~~~\nThe docs are built with `sphinx <https://www.sphinx-doc.org>`_. Please make\nsure they compile when you change them (this also includes function doc strings)::\n\n    cd docs\n    pip install -r requirements.txt\n    sphinx-build . _build  # open \"index.html\" in the \"_build\" directory\n\n\nPEP8\n~~~~\nWe use flake8 to enforce coding style::\n\n    pip install flake8\n    flake8 --exclude _version.py dclab\n    flake8 docs\n    flake8 examples\n    flake8 tests\n\n\nIncrementing version\n~~~~~~~~~~~~~~~~~~~~\nDclab gets its version from the latest git tag.\nIf you think that a new version should be published,\ncreate a tag on the master branch (if you have the necessary\npermissions to do so)::\n\n    git tag -a \"0.1.3\"\n    git push --tags origin\n\nAppveyor and GitHub Actions will then automatically build source package and wheels\nand publish them on PyPI.\n\n\n.. |dclab| image:: https://raw.github.com/DC-analysis/dclab/master/docs/logo/dclab.png\n.. |PyPI Version| image:: https://img.shields.io/pypi/v/dclab.svg\n   :target: https://pypi.python.org/pypi/dclab\n.. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/DC-analysis/dclab/check.yml\n   :target: https://github.com/DC-analysis/dclab/actions?query=workflow%3AChecks\n.. |Coverage Status| image:: https://img.shields.io/codecov/c/github/DC-analysis/dclab/master.svg\n   :target: https://codecov.io/gh/DC-analysis/dclab\n.. |Docs Status| image:: https://readthedocs.org/projects/dclab/badge/?version=latest\n   :target: https://readthedocs.org/projects/dclab/builds/\n",
    "bugtrack_url": null,
    "license": "GPL version 2.0 or later",
    "summary": "Library for real-time deformability cytometry (RT-DC)",
    "version": "0.62.10",
    "project_urls": {
        "changelog": "https://dclab.readthedocs.io/en/stable/sec_changelog.html",
        "documentation": "https://dclab.readthedocs.io/en/stable/",
        "source": "https://github.com/DC-Analysis/dclab",
        "tracker": "https://github.com/DC-Analysis/dclab/issues"
    },
    "split_keywords": [
        "rt-dc",
        " deformability",
        " cytometry"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04c0d03f09a4d2cb0d129099c52a41c1a22d23e39dd4a0a1b2a3a13261fd319e",
                "md5": "4edd205a338207ee8facd2c1f8a00616",
                "sha256": "52939339942b080a9c1aa96f95696596b237935731691554ef15d8751e968ab9"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4edd205a338207ee8facd2c1f8a00616",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 912350,
            "upload_time": "2025-01-07T10:09:18",
            "upload_time_iso_8601": "2025-01-07T10:09:18.655566Z",
            "url": "https://files.pythonhosted.org/packages/04/c0/d03f09a4d2cb0d129099c52a41c1a22d23e39dd4a0a1b2a3a13261fd319e/dclab-0.62.10-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7894eb2b4b58c28cfb0885fd9a299d4af122e64e3ce9a1913586751063516603",
                "md5": "1351d96833cb16d6cf6c5851d6c4a9f5",
                "sha256": "349f3db344e696401f00f8ad0382ab654f1ba13b13fae69a0d28c460bd755695"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1351d96833cb16d6cf6c5851d6c4a9f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 895756,
            "upload_time": "2025-01-07T10:09:19",
            "upload_time_iso_8601": "2025-01-07T10:09:19.763551Z",
            "url": "https://files.pythonhosted.org/packages/78/94/eb2b4b58c28cfb0885fd9a299d4af122e64e3ce9a1913586751063516603/dclab-0.62.10-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb36d76341c5f58cafb50237aaba0821d906daa0c0d351f9aa53c50a0b2d8792",
                "md5": "b004c2a0637d361c846d8f773e223653",
                "sha256": "8b2b1dc0ce9516f5ddea7924c58e018ad4feac30910195b160ba13f3a7b6a7b6"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b004c2a0637d361c846d8f773e223653",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 2123472,
            "upload_time": "2025-01-07T10:15:07",
            "upload_time_iso_8601": "2025-01-07T10:15:07.978352Z",
            "url": "https://files.pythonhosted.org/packages/fb/36/d76341c5f58cafb50237aaba0821d906daa0c0d351f9aa53c50a0b2d8792/dclab-0.62.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3e3d909900866781dd32debb50799d514cb35f5d8c16c76c8d9f85f5764b74d",
                "md5": "2c39cfe82530a14f8a29345b7ddc915e",
                "sha256": "a6e7e6f5a36bd274713f77850c5c6e87edf6f0123ac7c819c2f84c9e8b78c5d1"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c39cfe82530a14f8a29345b7ddc915e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 2197450,
            "upload_time": "2025-01-07T10:15:10",
            "upload_time_iso_8601": "2025-01-07T10:15:10.164857Z",
            "url": "https://files.pythonhosted.org/packages/a3/e3/d909900866781dd32debb50799d514cb35f5d8c16c76c8d9f85f5764b74d/dclab-0.62.10-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c0151f33872c5c2fd7847d811756851f33bee244f87ec7bcc2b2f061e5cb635",
                "md5": "18db5d2f15610d5cda16864ad048a05e",
                "sha256": "1f9c44eb7e35719a730e08ab7700a782c2c1449916a20f280412d1cc73ef0ba2"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "18db5d2f15610d5cda16864ad048a05e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 885770,
            "upload_time": "2025-01-07T10:07:04",
            "upload_time_iso_8601": "2025-01-07T10:07:04.474686Z",
            "url": "https://files.pythonhosted.org/packages/8c/01/51f33872c5c2fd7847d811756851f33bee244f87ec7bcc2b2f061e5cb635/dclab-0.62.10-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d454b1e7dbc91105436f52a52d46d8fce8061d2fdbb6ae464277d9af50d43f78",
                "md5": "2bf6a0213ff7edae71cf4d9e5c378cdf",
                "sha256": "280284628d7a23f4714e0c4bf7f31232fe9ec2d29513c4705186ba917e40e23f"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bf6a0213ff7edae71cf4d9e5c378cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 911940,
            "upload_time": "2025-01-07T10:09:21",
            "upload_time_iso_8601": "2025-01-07T10:09:21.960001Z",
            "url": "https://files.pythonhosted.org/packages/d4/54/b1e7dbc91105436f52a52d46d8fce8061d2fdbb6ae464277d9af50d43f78/dclab-0.62.10-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7de853b291298182f312eb15736a2d694614426c095a67b29a3975dfe4cd31e4",
                "md5": "e2428e3923e88260b23764474a4ad4d0",
                "sha256": "f18f9e1e69ff65b7d6c9efefbfdbcac7eb5c5f0803d1fd7c4c4d51a02df1ed66"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e2428e3923e88260b23764474a4ad4d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 895255,
            "upload_time": "2025-01-07T10:09:26",
            "upload_time_iso_8601": "2025-01-07T10:09:26.785623Z",
            "url": "https://files.pythonhosted.org/packages/7d/e8/53b291298182f312eb15736a2d694614426c095a67b29a3975dfe4cd31e4/dclab-0.62.10-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d25c45e12f66ef5566ff4eda0050636a1fdb36eff00682f022d2a455577f338",
                "md5": "8aa1d13e929ecab290203635cdce25c4",
                "sha256": "84a03aeb3478f65ecaf696a7705d241dc60744e10751389104dd957d8ed02a9c"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8aa1d13e929ecab290203635cdce25c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 2248815,
            "upload_time": "2025-01-07T10:15:13",
            "upload_time_iso_8601": "2025-01-07T10:15:13.374610Z",
            "url": "https://files.pythonhosted.org/packages/7d/25/c45e12f66ef5566ff4eda0050636a1fdb36eff00682f022d2a455577f338/dclab-0.62.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91939150c91f381250098f15b9ca46bf76f6451595a0cf6932e5e1effe65aaf3",
                "md5": "db97bed6707f21d04f40912b984a2ff4",
                "sha256": "3d9c3765967301a2ede3475876e31e8626fe0a46fe4db44f283958576f90376f"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db97bed6707f21d04f40912b984a2ff4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 2328204,
            "upload_time": "2025-01-07T10:15:15",
            "upload_time_iso_8601": "2025-01-07T10:15:15.204862Z",
            "url": "https://files.pythonhosted.org/packages/91/93/9150c91f381250098f15b9ca46bf76f6451595a0cf6932e5e1effe65aaf3/dclab-0.62.10-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "498b1c4a553d9c363a431a17336bfb96a97a41e4f04ccb52ad9c9c3a11e14473",
                "md5": "37708bfe4a73efd4f5b584a59abaabc0",
                "sha256": "17c5dc5289a3094c49ff4d1384b56b10bbdd75af7296c4a187a1dd514d052673"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "37708bfe4a73efd4f5b584a59abaabc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 885783,
            "upload_time": "2025-01-07T10:07:08",
            "upload_time_iso_8601": "2025-01-07T10:07:08.330423Z",
            "url": "https://files.pythonhosted.org/packages/49/8b/1c4a553d9c363a431a17336bfb96a97a41e4f04ccb52ad9c9c3a11e14473/dclab-0.62.10-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53498de4db93e870756924b43245ef9a2e84b95bed33f2b00155a53bbaf157c0",
                "md5": "6cf6761cdcea7ac42bd6d22f0c83e274",
                "sha256": "31e907391a52984f8305051d40bde3a35daf260e1be48b7655292dca833a5655"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6cf6761cdcea7ac42bd6d22f0c83e274",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 914711,
            "upload_time": "2025-01-07T10:09:28",
            "upload_time_iso_8601": "2025-01-07T10:09:28.641757Z",
            "url": "https://files.pythonhosted.org/packages/53/49/8de4db93e870756924b43245ef9a2e84b95bed33f2b00155a53bbaf157c0/dclab-0.62.10-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8640175b9b29fe23f345dc433f3faea8ebe355bc90ce402bdec9947607257da6",
                "md5": "19b8971b653e68f2bd8d40070878d0f9",
                "sha256": "8ace528602a28dd7da749101de438169fcf6b69f2e7443da2aaa1aa8260f4074"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "19b8971b653e68f2bd8d40070878d0f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 897869,
            "upload_time": "2025-01-07T10:09:29",
            "upload_time_iso_8601": "2025-01-07T10:09:29.897524Z",
            "url": "https://files.pythonhosted.org/packages/86/40/175b9b29fe23f345dc433f3faea8ebe355bc90ce402bdec9947607257da6/dclab-0.62.10-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a8a531b56d0e37a8697bb4c3b6bb88eb54c427bd6c2029e0b6c4a8a6121f9c5",
                "md5": "dec9c1bd3ab675810acbd0ab3ea609bd",
                "sha256": "f11bf5fa94d98270e93fce45556fea6dec89d749823ec7900758cbfde04f455b"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dec9c1bd3ab675810acbd0ab3ea609bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 2216625,
            "upload_time": "2025-01-07T10:15:17",
            "upload_time_iso_8601": "2025-01-07T10:15:17.420517Z",
            "url": "https://files.pythonhosted.org/packages/0a/8a/531b56d0e37a8697bb4c3b6bb88eb54c427bd6c2029e0b6c4a8a6121f9c5/dclab-0.62.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f8a54e4ad07e4b82f14f8af0fdb24ee482f8e22b74c977569d6dd71f07f53c6",
                "md5": "251affcd8ad6bb53ca6be79cb07b1ac3",
                "sha256": "f2fb629c6384661fa9dbcc90e3b01869089c87c68f9c61e122d7f28f691ed168"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "251affcd8ad6bb53ca6be79cb07b1ac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 2286272,
            "upload_time": "2025-01-07T10:15:20",
            "upload_time_iso_8601": "2025-01-07T10:15:20.280991Z",
            "url": "https://files.pythonhosted.org/packages/2f/8a/54e4ad07e4b82f14f8af0fdb24ee482f8e22b74c977569d6dd71f07f53c6/dclab-0.62.10-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b67c211bc511a7a32199d08215bffdb6502b67fef7acca173741ed82711c2d73",
                "md5": "a7f3b68639856157102dd178e9e87b64",
                "sha256": "467b5587ed70bab2a65d38fd65bfb507cbb86ba414c5c0d72759595f1b0f702e"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7f3b68639856157102dd178e9e87b64",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 910908,
            "upload_time": "2025-01-07T10:09:31",
            "upload_time_iso_8601": "2025-01-07T10:09:31.984748Z",
            "url": "https://files.pythonhosted.org/packages/b6/7c/211bc511a7a32199d08215bffdb6502b67fef7acca173741ed82711c2d73/dclab-0.62.10-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e41487688ed49abb62c33048fd04cb6ad6f15c8d894aa8e48e00a31ec5bdb3a",
                "md5": "328c13a3cce8f1d27ec50766950ab730",
                "sha256": "6bb56d4b129c077ba8b683e361c720c7f978aba0c111f6ebbcd9a719a4e50a22"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "328c13a3cce8f1d27ec50766950ab730",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 893737,
            "upload_time": "2025-01-07T10:09:34",
            "upload_time_iso_8601": "2025-01-07T10:09:34.683707Z",
            "url": "https://files.pythonhosted.org/packages/0e/41/487688ed49abb62c33048fd04cb6ad6f15c8d894aa8e48e00a31ec5bdb3a/dclab-0.62.10-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "243c1e218326fb5bc086c11a5f275e20c6f97d6763e4d9eeac5025f56935e69f",
                "md5": "68ba0a3bcb33c27380e3129cf33e16c9",
                "sha256": "e5cbd8b383b8a14b68503ded940313e782f205b89f5a45d84b4fc5f8f9e84124"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68ba0a3bcb33c27380e3129cf33e16c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 2201630,
            "upload_time": "2025-01-07T10:15:22",
            "upload_time_iso_8601": "2025-01-07T10:15:22.080263Z",
            "url": "https://files.pythonhosted.org/packages/24/3c/1e218326fb5bc086c11a5f275e20c6f97d6763e4d9eeac5025f56935e69f/dclab-0.62.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2bda533fd8fb1c6d8ead0c69349c4f0a0eecf00026663018b947d7f2b5cfeed",
                "md5": "cf61c79769a7a7cd88f0c8e2d36c14dc",
                "sha256": "b72ce7165b6526e50e4ba8a71f34197fd118d053b0b842d9da3451a59f42d652"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf61c79769a7a7cd88f0c8e2d36c14dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 2273886,
            "upload_time": "2025-01-07T10:15:25",
            "upload_time_iso_8601": "2025-01-07T10:15:25.419216Z",
            "url": "https://files.pythonhosted.org/packages/a2/bd/a533fd8fb1c6d8ead0c69349c4f0a0eecf00026663018b947d7f2b5cfeed/dclab-0.62.10-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e4f4da0489d019540a42a7d65d97c43951adbba1a5a89dc8e2cdcf2c031e99f",
                "md5": "75c6897a3d71a2ba0057ee0234ec8fac",
                "sha256": "240c774fa45bb097b2e9091e063fa169c9ba344c9c3aba2ddcb3cf9eaaf370ca"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75c6897a3d71a2ba0057ee0234ec8fac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 914173,
            "upload_time": "2025-01-07T10:09:35",
            "upload_time_iso_8601": "2025-01-07T10:09:35.757664Z",
            "url": "https://files.pythonhosted.org/packages/1e/4f/4da0489d019540a42a7d65d97c43951adbba1a5a89dc8e2cdcf2c031e99f/dclab-0.62.10-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "536fb52888dfe17895f198de383e802cd9a9037ab7228d775beade5c79d98f2f",
                "md5": "f6fadf16111174132b8d31f5b7505997",
                "sha256": "74455af6afb496be23f00fb436db7af58d12c83d2ef330feeb1a027e18b22569"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f6fadf16111174132b8d31f5b7505997",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 897214,
            "upload_time": "2025-01-07T10:09:37",
            "upload_time_iso_8601": "2025-01-07T10:09:37.101547Z",
            "url": "https://files.pythonhosted.org/packages/53/6f/b52888dfe17895f198de383e802cd9a9037ab7228d775beade5c79d98f2f/dclab-0.62.10-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db48f3e1eefc91f54ca0246af05dd5f99548ca51c1a38b1d89aa96056912426d",
                "md5": "887b178e6f931513a041843f63feaeaf",
                "sha256": "2f8a343374da2cdf600a1a1e1230e0581184a1fe834277857ba3d9995b81564a"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "887b178e6f931513a041843f63feaeaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 2159295,
            "upload_time": "2025-01-07T10:15:28",
            "upload_time_iso_8601": "2025-01-07T10:15:28.398637Z",
            "url": "https://files.pythonhosted.org/packages/db/48/f3e1eefc91f54ca0246af05dd5f99548ca51c1a38b1d89aa96056912426d/dclab-0.62.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "306f307b15f4ce5b28a0d6f8e2a7c90993e21632b55d25e5ff32e5db644ddd12",
                "md5": "4823422b85663a0f2d77f3304360014a",
                "sha256": "24c01bbfb50b080923daa390bc17bab9f7a78c29ce88d885e022b59231e85b88"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4823422b85663a0f2d77f3304360014a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 2243249,
            "upload_time": "2025-01-07T10:15:32",
            "upload_time_iso_8601": "2025-01-07T10:15:32.665944Z",
            "url": "https://files.pythonhosted.org/packages/30/6f/307b15f4ce5b28a0d6f8e2a7c90993e21632b55d25e5ff32e5db644ddd12/dclab-0.62.10-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0ec9f7539d71b5417f8845823d1902eadbc72cb20fbbd977ec20eab9e32b1dc",
                "md5": "6a1fab1cebb643eac97f47aa3b7a2b47",
                "sha256": "d4980ca107f7547a20dff5912a86ed427ad73d13034400cd4e1cc52f3d755ce2"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6a1fab1cebb643eac97f47aa3b7a2b47",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 887664,
            "upload_time": "2025-01-07T10:07:10",
            "upload_time_iso_8601": "2025-01-07T10:07:10.743396Z",
            "url": "https://files.pythonhosted.org/packages/a0/ec/9f7539d71b5417f8845823d1902eadbc72cb20fbbd977ec20eab9e32b1dc/dclab-0.62.10-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cccc4817e3127664cb332cffbbeefee4f22c5b48d8c0e596cf22d707158fe79d",
                "md5": "2fa71f1442acdcc698c06f9d7d0d5c40",
                "sha256": "4e64b8930bfaed418e7a554b539ee77c21a6cd45ddd1e07700ff80e903f31af2"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fa71f1442acdcc698c06f9d7d0d5c40",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 914023,
            "upload_time": "2025-01-07T10:09:39",
            "upload_time_iso_8601": "2025-01-07T10:09:39.257769Z",
            "url": "https://files.pythonhosted.org/packages/cc/cc/4817e3127664cb332cffbbeefee4f22c5b48d8c0e596cf22d707158fe79d/dclab-0.62.10-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35729f07c64788d031f89a76989f69e398f763c4e22da81fa3ed7b35b3315c4a",
                "md5": "8c1e2c847985371d8d2ee04b7ff5a61c",
                "sha256": "0500d4af196ded85155ad65eb8fea0f4c49f11fe81a69e78b05acd6945c6d7e4"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8c1e2c847985371d8d2ee04b7ff5a61c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 897544,
            "upload_time": "2025-01-07T10:09:40",
            "upload_time_iso_8601": "2025-01-07T10:09:40.516484Z",
            "url": "https://files.pythonhosted.org/packages/35/72/9f07c64788d031f89a76989f69e398f763c4e22da81fa3ed7b35b3315c4a/dclab-0.62.10-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f54e687dc6642f5d67f6c962fd51a28c58099c296912621378ac8fa1152d4848",
                "md5": "70173a19267f68a694b3d70bef59b287",
                "sha256": "18b219e73d33dff1db7bd6352829dd746ab3d175a23ee0ae59356835fa3b874a"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "70173a19267f68a694b3d70bef59b287",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 2132074,
            "upload_time": "2025-01-07T10:15:35",
            "upload_time_iso_8601": "2025-01-07T10:15:35.113545Z",
            "url": "https://files.pythonhosted.org/packages/f5/4e/687dc6642f5d67f6c962fd51a28c58099c296912621378ac8fa1152d4848/dclab-0.62.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01470735cb83eca6974f325dfd8b37271febd0f231c373cd27e49c66f1468255",
                "md5": "bd7f480f7d678c78164d290c557e9afb",
                "sha256": "9724d871b03122edb78ca83f18e21bb15e643c4888ae9a0446b8a1f19509584c"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd7f480f7d678c78164d290c557e9afb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 2205202,
            "upload_time": "2025-01-07T10:15:38",
            "upload_time_iso_8601": "2025-01-07T10:15:38.046209Z",
            "url": "https://files.pythonhosted.org/packages/01/47/0735cb83eca6974f325dfd8b37271febd0f231c373cd27e49c66f1468255/dclab-0.62.10-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e2bb9474fefb1e9b08aa85f46f4d741cc7c3fa1d43f4febaa06890f5c0be0f0",
                "md5": "15c0498b172f64a025511164388e97ed",
                "sha256": "950a0bf7b2c1b071a5bce24f766b1a72f5a7b76e337932ae447182a852cfe975"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "15c0498b172f64a025511164388e97ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 887479,
            "upload_time": "2025-01-07T10:07:13",
            "upload_time_iso_8601": "2025-01-07T10:07:13.369066Z",
            "url": "https://files.pythonhosted.org/packages/1e/2b/b9474fefb1e9b08aa85f46f4d741cc7c3fa1d43f4febaa06890f5c0be0f0/dclab-0.62.10-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1237e58c3534afa74e689e014ffe48377889397952f96cf150a5eabd8c38979",
                "md5": "d0fdfb8ecc7f53f3f988bbba131c7cd4",
                "sha256": "03a888c404c43f61517fe39a6d6952e506542003acf33352fe4488fd97c62f47"
            },
            "downloads": -1,
            "filename": "dclab-0.62.10.tar.gz",
            "has_sig": false,
            "md5_digest": "d0fdfb8ecc7f53f3f988bbba131c7cd4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.8",
            "size": 4768209,
            "upload_time": "2025-01-07T10:02:36",
            "upload_time_iso_8601": "2025-01-07T10:02:36.672610Z",
            "url": "https://files.pythonhosted.org/packages/b1/23/7e58c3534afa74e689e014ffe48377889397952f96cf150a5eabd8c38979/dclab-0.62.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-07 10:02:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DC-Analysis",
    "github_project": "dclab",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dclab"
}
        
Elapsed time: 1.14997s