dclab


Namedclab JSON
Version 0.62.7 PyPI version JSON
download
home_pageNone
SummaryLibrary for real-time deformability cytometry (RT-DC)
upload_time2024-12-06 19:15:51
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/45/4a/99a15319b900182c3e8a4822fa827344833c453020cdbbc8b84684bbb8a4/dclab-0.62.7.tar.gz",
    "platform": null,
    "description": "|dclab|\r\n=======\r\n\r\n|PyPI Version| |Build Status| |Coverage Status| |Docs Status|\r\n\r\n\r\nThis is a Python library for the post-measurement analysis of\r\nreal-time deformability cytometry (RT-DC) datasets; an essential part of\r\n`Shape-Out <https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2>`__.\r\n\r\nDocumentation\r\n-------------\r\nThe documentation, including the code reference and examples, is available at\r\n`dclab.readthedocs.io <https://dclab.readthedocs.io/en/stable/>`__.\r\n\r\n\r\nInstallation\r\n------------\r\n\r\n::\r\n\r\n    pip install dclab[all]\r\n\r\nFor more options, please check out the `documentation\r\n<https://dclab.readthedocs.io/en/latest/sec_getting_started.html#installation>`__.\r\n\r\n\r\nInformation for developers\r\n--------------------------\r\n\r\n\r\nContributing\r\n~~~~~~~~~~~~\r\nThe main branch for developing dclab is master.\r\nIf you want to make small changes like one-liners,\r\ndocumentation, or default values in the configuration,\r\nyou may work on the master branch. If you want to change\r\nmore, please (fork dclab and) create a separate branch,\r\ne.g. ``my_new_feature_dev``, and create a pull-request\r\nonce you are done making your changes.\r\nPlease make sure to edit the \r\n`Changelog <https://github.com/DC-analysis/dclab/blob/master/CHANGELOG>`__.\r\n\r\n**Very important:** Please always try to use ::\r\n\r\n\r\n    git pull --rebase\r\n\r\ninstead of::\r\n\r\n    git pull\r\n\r\nto prevent non-linearities in the commit history.\r\n\r\nTests\r\n~~~~~\r\ndclab is tested using pytest. If you have the time, please write test\r\nmethods for your code and put them in the ``tests`` directory. To run\r\nthe tests, install `pytest` and run::\r\n\r\n    pytest tests\r\n\r\n\r\nDocs\r\n~~~~\r\nThe docs are built with `sphinx <https://www.sphinx-doc.org>`_. Please make\r\nsure they compile when you change them (this also includes function doc strings)::\r\n\r\n    cd docs\r\n    pip install -r requirements.txt\r\n    sphinx-build . _build  # open \"index.html\" in the \"_build\" directory\r\n\r\n\r\nPEP8\r\n~~~~\r\nWe use flake8 to enforce coding style::\r\n\r\n    pip install flake8\r\n    flake8 --exclude _version.py dclab\r\n    flake8 docs\r\n    flake8 examples\r\n    flake8 tests\r\n\r\n\r\nIncrementing version\r\n~~~~~~~~~~~~~~~~~~~~\r\nDclab gets its version from the latest git tag.\r\nIf you think that a new version should be published,\r\ncreate a tag on the master branch (if you have the necessary\r\npermissions to do so)::\r\n\r\n    git tag -a \"0.1.3\"\r\n    git push --tags origin\r\n\r\nAppveyor and GitHub Actions will then automatically build source package and wheels\r\nand publish them on PyPI.\r\n\r\n\r\n.. |dclab| image:: https://raw.github.com/DC-analysis/dclab/master/docs/logo/dclab.png\r\n.. |PyPI Version| image:: https://img.shields.io/pypi/v/dclab.svg\r\n   :target: https://pypi.python.org/pypi/dclab\r\n.. |Build Status| image:: https://img.shields.io/github/actions/workflow/status/DC-analysis/dclab/check.yml\r\n   :target: https://github.com/DC-analysis/dclab/actions?query=workflow%3AChecks\r\n.. |Coverage Status| image:: https://img.shields.io/codecov/c/github/DC-analysis/dclab/master.svg\r\n   :target: https://codecov.io/gh/DC-analysis/dclab\r\n.. |Docs Status| image:: https://readthedocs.org/projects/dclab/badge/?version=latest\r\n   :target: https://readthedocs.org/projects/dclab/builds/\r\n",
    "bugtrack_url": null,
    "license": "GPL version 2.0 or later",
    "summary": "Library for real-time deformability cytometry (RT-DC)",
    "version": "0.62.7",
    "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": "af914e31c546e15e40bb5a6cead933db8b9f7a029c57bbbb90161dac6bab8285",
                "md5": "2edfb6cd46c6156e83634f3b4dbd161f",
                "sha256": "bd9455f20ee48771ce587beb35b8f7a8e6e132d2ddc1eac11c79697a48310faf"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2edfb6cd46c6156e83634f3b4dbd161f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 911998,
            "upload_time": "2024-12-06T19:13:24",
            "upload_time_iso_8601": "2024-12-06T19:13:24.819551Z",
            "url": "https://files.pythonhosted.org/packages/af/91/4e31c546e15e40bb5a6cead933db8b9f7a029c57bbbb90161dac6bab8285/dclab-0.62.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd081c8ca87ba61352c14857612f1fc794dca5b2a8502f99b9cb80f857bfa789",
                "md5": "e2ecbbecda29d19479a0884a2e56773f",
                "sha256": "e8637b1c164dee7ae2d34f93737f4a25062b05eede20372fbb138d33e14c58e6"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e2ecbbecda29d19479a0884a2e56773f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 895419,
            "upload_time": "2024-12-06T19:23:20",
            "upload_time_iso_8601": "2024-12-06T19:23:20.300222Z",
            "url": "https://files.pythonhosted.org/packages/fd/08/1c8ca87ba61352c14857612f1fc794dca5b2a8502f99b9cb80f857bfa789/dclab-0.62.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f15e8d718910843ae2c4f669ee9f583523a71c060cab0285c106b7881088ad6",
                "md5": "8cf70b3bfaa8545d9dba62622368dabd",
                "sha256": "ff6465646dd12ba8135738dbab7b0fac26082682fdd1ed8f51c825b475f9c205"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8cf70b3bfaa8545d9dba62622368dabd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 2123123,
            "upload_time": "2024-12-06T19:22:04",
            "upload_time_iso_8601": "2024-12-06T19:22:04.499583Z",
            "url": "https://files.pythonhosted.org/packages/7f/15/e8d718910843ae2c4f669ee9f583523a71c060cab0285c106b7881088ad6/dclab-0.62.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdd975c759c9bde7e58388ac69fa87b5ecba496ba41e3d0cbf7b98d8f02d2fb0",
                "md5": "dd1466ba1139663e25981362fd84b4d1",
                "sha256": "5ec1886ab84ef2e7d897d29bd0dfc721a10dfbd687ac5ae9ba66c3395a9c9a5f"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd1466ba1139663e25981362fd84b4d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 2197106,
            "upload_time": "2024-12-06T19:22:06",
            "upload_time_iso_8601": "2024-12-06T19:22:06.511417Z",
            "url": "https://files.pythonhosted.org/packages/fd/d9/75c759c9bde7e58388ac69fa87b5ecba496ba41e3d0cbf7b98d8f02d2fb0/dclab-0.62.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "458011296b20e6e395a65107f7a3723fa5e802af5000e80f381836d8a564d9c3",
                "md5": "25d2675707805d2043f5a8ba9bc01170",
                "sha256": "d05c562cad65cbc5a17d1a42c9ce87b8cae4a8aa0fd3ff1b8ca7548f2bdb5d17"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "25d2675707805d2043f5a8ba9bc01170",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 885423,
            "upload_time": "2024-12-06T19:12:59",
            "upload_time_iso_8601": "2024-12-06T19:12:59.368569Z",
            "url": "https://files.pythonhosted.org/packages/45/80/11296b20e6e395a65107f7a3723fa5e802af5000e80f381836d8a564d9c3/dclab-0.62.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a443ae68399f8724d5db31c8809497ae8d9d062e05127c3e909b42bd284c16b9",
                "md5": "e9d4c628bea323c0aef74f47dc55e299",
                "sha256": "3897d8280fd5369620e1c306417b1151c89a01da562e3ec9ceb82504d2276879"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9d4c628bea323c0aef74f47dc55e299",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 911579,
            "upload_time": "2024-12-06T19:13:26",
            "upload_time_iso_8601": "2024-12-06T19:13:26.010274Z",
            "url": "https://files.pythonhosted.org/packages/a4/43/ae68399f8724d5db31c8809497ae8d9d062e05127c3e909b42bd284c16b9/dclab-0.62.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a05d1c51c171cb389cae7b1876a12867a468a9fb20adbf1766d61f8c470ab6fe",
                "md5": "a8bf364f025e5131621f39a8fc141cdf",
                "sha256": "31906b6d87b5ac741155f760b64dc49a770c42ff76211e4f38e2b59737fc6e3f"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a8bf364f025e5131621f39a8fc141cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 894907,
            "upload_time": "2024-12-06T19:23:22",
            "upload_time_iso_8601": "2024-12-06T19:23:22.304615Z",
            "url": "https://files.pythonhosted.org/packages/a0/5d/1c51c171cb389cae7b1876a12867a468a9fb20adbf1766d61f8c470ab6fe/dclab-0.62.7-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b3dbb92067d6d71ba5f1fd3aa15ae9887471c9078e4ca9bd2809f4e50decf7a",
                "md5": "7a1486e1ced61f9b692dad3d64bc088e",
                "sha256": "9700c71f5a836357c6fb360f14591115608e719fcc880d1d0ed733ec654a2bae"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a1486e1ced61f9b692dad3d64bc088e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 2248463,
            "upload_time": "2024-12-06T19:22:08",
            "upload_time_iso_8601": "2024-12-06T19:22:08.800692Z",
            "url": "https://files.pythonhosted.org/packages/6b/3d/bb92067d6d71ba5f1fd3aa15ae9887471c9078e4ca9bd2809f4e50decf7a/dclab-0.62.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67bce882bd67b9df72ca459187adfe5201367f33d4813817f360eb4952db95a5",
                "md5": "4c8b579c05e2af4b138fa4040dbb125e",
                "sha256": "981e593df12c2a53b3d1bef1d9c1b9a5931cecfebc37c97e593870c8a51ac956"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c8b579c05e2af4b138fa4040dbb125e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 2327862,
            "upload_time": "2024-12-06T19:22:10",
            "upload_time_iso_8601": "2024-12-06T19:22:10.860229Z",
            "url": "https://files.pythonhosted.org/packages/67/bc/e882bd67b9df72ca459187adfe5201367f33d4813817f360eb4952db95a5/dclab-0.62.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db9747f40f047d2bbfb5411afdeef1bc3020c0c3514c14ba9cb540705bfdd67d",
                "md5": "c674772ca41bdb4356caac3b0d9c11cd",
                "sha256": "722be342fd6ceeeb29567dd8c01b19ed13c06a99d3e67c89a5214867102c0742"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c674772ca41bdb4356caac3b0d9c11cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 885437,
            "upload_time": "2024-12-06T19:13:02",
            "upload_time_iso_8601": "2024-12-06T19:13:02.269716Z",
            "url": "https://files.pythonhosted.org/packages/db/97/47f40f047d2bbfb5411afdeef1bc3020c0c3514c14ba9cb540705bfdd67d/dclab-0.62.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f529fc29350f2e5fdcc5c1312275a1b4ed2cf698e230dedc6ed95983a48fcddc",
                "md5": "8201ce66eb7a24b93dda8b80e1881c39",
                "sha256": "73af7a093bf5cff1f35d900b07917f4a72a73b309f5c1cf0f391837210174d97"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8201ce66eb7a24b93dda8b80e1881c39",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 914354,
            "upload_time": "2024-12-06T19:13:27",
            "upload_time_iso_8601": "2024-12-06T19:13:27.847534Z",
            "url": "https://files.pythonhosted.org/packages/f5/29/fc29350f2e5fdcc5c1312275a1b4ed2cf698e230dedc6ed95983a48fcddc/dclab-0.62.7-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75f26b2d9e6142a50a14034989d3b3c4f506fa4bd2337dc507e1f64e9b73ad62",
                "md5": "e55ef2bc74fbfe6f14b5820f1df414aa",
                "sha256": "5c26455a485a3678da9ab6b9b9c7eba4332e5158ab8a7f7ef53e469e82ce7e2f"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e55ef2bc74fbfe6f14b5820f1df414aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 897516,
            "upload_time": "2024-12-06T19:23:24",
            "upload_time_iso_8601": "2024-12-06T19:23:24.423733Z",
            "url": "https://files.pythonhosted.org/packages/75/f2/6b2d9e6142a50a14034989d3b3c4f506fa4bd2337dc507e1f64e9b73ad62/dclab-0.62.7-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36376d93033ad4636daacd929c320b56baa99ea65bbc045119acd04f16d92ff2",
                "md5": "40a1e37869a494e4f57bcaecd5c642a1",
                "sha256": "3ea428133c3a21e52fa701caa89cb4f14a420f58b736f3a024207f7e7b9c1eb5"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40a1e37869a494e4f57bcaecd5c642a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 2216277,
            "upload_time": "2024-12-06T19:22:12",
            "upload_time_iso_8601": "2024-12-06T19:22:12.165909Z",
            "url": "https://files.pythonhosted.org/packages/36/37/6d93033ad4636daacd929c320b56baa99ea65bbc045119acd04f16d92ff2/dclab-0.62.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea8973ca79f60fe5829c31a0e7133a97efdfd4ac21a662f1fd24cdf6f01a3531",
                "md5": "74e3ac9d30fa59c0c0a27dafdb6e4453",
                "sha256": "af39dfee7ee6d922a9937795cac211f6a76663b7fab47a017d4998f5535fbd7f"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74e3ac9d30fa59c0c0a27dafdb6e4453",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 2285925,
            "upload_time": "2024-12-06T19:22:14",
            "upload_time_iso_8601": "2024-12-06T19:22:14.171808Z",
            "url": "https://files.pythonhosted.org/packages/ea/89/73ca79f60fe5829c31a0e7133a97efdfd4ac21a662f1fd24cdf6f01a3531/dclab-0.62.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c25fa31874fb9aa6e2530f4e403f6e244ec97ff663b9fee5d065037dc0fc88ad",
                "md5": "27c7ea5d3a7a77f4dbcb8a3298806fcb",
                "sha256": "cfca48d52829a8c0a99fbe73bb4875010dc2a16bdc277d77f87a19c1cc2b6961"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27c7ea5d3a7a77f4dbcb8a3298806fcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 910560,
            "upload_time": "2024-12-06T19:13:29",
            "upload_time_iso_8601": "2024-12-06T19:13:29.588937Z",
            "url": "https://files.pythonhosted.org/packages/c2/5f/a31874fb9aa6e2530f4e403f6e244ec97ff663b9fee5d065037dc0fc88ad/dclab-0.62.7-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca1249bc80f1f571c8b830dc374c20ef963d1206c71c46e5b48a8bd9a089b1ac",
                "md5": "2be7ecc594520d299ae89a367a77a62a",
                "sha256": "b9ac6ac784e16d65def4924e241ab18f54a676d0150fe80f6932eb4efa84fdd6"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2be7ecc594520d299ae89a367a77a62a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 893393,
            "upload_time": "2024-12-06T19:23:25",
            "upload_time_iso_8601": "2024-12-06T19:23:25.836221Z",
            "url": "https://files.pythonhosted.org/packages/ca/12/49bc80f1f571c8b830dc374c20ef963d1206c71c46e5b48a8bd9a089b1ac/dclab-0.62.7-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57d10294e526141346af03ca148a32631cbf75734673a6a091779d36aa9c9d1d",
                "md5": "7197a7603eb827cf765c178ddb87d4ae",
                "sha256": "9050481b8e12e9246c58fe44c68b08e90d3870c0d34624af824d6066bdcf2569"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7197a7603eb827cf765c178ddb87d4ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 2201286,
            "upload_time": "2024-12-06T19:22:16",
            "upload_time_iso_8601": "2024-12-06T19:22:16.081534Z",
            "url": "https://files.pythonhosted.org/packages/57/d1/0294e526141346af03ca148a32631cbf75734673a6a091779d36aa9c9d1d/dclab-0.62.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56a27e38b1341c95b2bffc071fea32dfd24c13afa594e9f8e63ed356980333be",
                "md5": "c92722d57ec425112fde0230fbb1938f",
                "sha256": "2ca7b96baf2c486dff8677dfceb75d13170bde436f37f962aef0d66fef3843e2"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c92722d57ec425112fde0230fbb1938f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 2273547,
            "upload_time": "2024-12-06T19:22:18",
            "upload_time_iso_8601": "2024-12-06T19:22:18.090251Z",
            "url": "https://files.pythonhosted.org/packages/56/a2/7e38b1341c95b2bffc071fea32dfd24c13afa594e9f8e63ed356980333be/dclab-0.62.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fa3f6f7562cf1c914ffadbacbb4d2e9570de496424851e3e4df75a149ffc45e",
                "md5": "3fbf80c70ef1f69f14d37dbcd393b262",
                "sha256": "8cb324fc0584fca744250aff861a114195139b26617f159d19997aedb2500fdc"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3fbf80c70ef1f69f14d37dbcd393b262",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 913819,
            "upload_time": "2024-12-06T19:13:31",
            "upload_time_iso_8601": "2024-12-06T19:13:31.524629Z",
            "url": "https://files.pythonhosted.org/packages/5f/a3/f6f7562cf1c914ffadbacbb4d2e9570de496424851e3e4df75a149ffc45e/dclab-0.62.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ba9412f6e58e903f9159ffe3d2d1a4c1def1b91b558fadae481b128ffc5043b",
                "md5": "228e7187827caa05248908ce784baf20",
                "sha256": "4fb09c8e5defe74d21c0f621f05f59aca15f04ae187a141de72e484e18ffd1e9"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "228e7187827caa05248908ce784baf20",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 896857,
            "upload_time": "2024-12-06T19:23:27",
            "upload_time_iso_8601": "2024-12-06T19:23:27.255258Z",
            "url": "https://files.pythonhosted.org/packages/6b/a9/412f6e58e903f9159ffe3d2d1a4c1def1b91b558fadae481b128ffc5043b/dclab-0.62.7-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f1e29145a30e9cf5b9536aaf0720b8f128ddc73740ab5ac1bef0ad76b2e1565",
                "md5": "b0f6e683b55efda4e5de61e9a81014ca",
                "sha256": "9c8bcb24b216d6b277f16dbd552d93068648a05d6322fc345cffbcd4c7f5f35c"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0f6e683b55efda4e5de61e9a81014ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 2158950,
            "upload_time": "2024-12-06T19:22:19",
            "upload_time_iso_8601": "2024-12-06T19:22:19.491577Z",
            "url": "https://files.pythonhosted.org/packages/0f/1e/29145a30e9cf5b9536aaf0720b8f128ddc73740ab5ac1bef0ad76b2e1565/dclab-0.62.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7ba76fee4b95397235bbbc7a31cfbcdf5bf85fc5fbd06d9e1fc0f1e35860029",
                "md5": "cfd5d12c0476e2b64637f5b173ea5380",
                "sha256": "3de1cce45f450725205a1444224f3db1b47e1265ef997d38268daa1c32a58f37"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfd5d12c0476e2b64637f5b173ea5380",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 2242900,
            "upload_time": "2024-12-06T19:22:20",
            "upload_time_iso_8601": "2024-12-06T19:22:20.872739Z",
            "url": "https://files.pythonhosted.org/packages/f7/ba/76fee4b95397235bbbc7a31cfbcdf5bf85fc5fbd06d9e1fc0f1e35860029/dclab-0.62.7-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cdb66677a0dae00be6e95563590c4b25f5914cd445469e143083964bb71c9e7",
                "md5": "406baa907ef23e94750a25bfae73ceee",
                "sha256": "cd8c1b3507ebea1b9875d190f0aa2ef633f099492ea715770e7c8b8f0848e024"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "406baa907ef23e94750a25bfae73ceee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 887320,
            "upload_time": "2024-12-06T19:13:04",
            "upload_time_iso_8601": "2024-12-06T19:13:04.160121Z",
            "url": "https://files.pythonhosted.org/packages/2c/db/66677a0dae00be6e95563590c4b25f5914cd445469e143083964bb71c9e7/dclab-0.62.7-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a89ad7e16c00f1618730ee40a3b517c6184a5a9ddd04b2b395b3464582f54ec",
                "md5": "b741281df95feeb78ca4d449879273e9",
                "sha256": "dc823f2acefc7c971eca2f10b7e5726ae0270b48448f6681c19d5fcc698695f2"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b741281df95feeb78ca4d449879273e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 913663,
            "upload_time": "2024-12-06T19:13:32",
            "upload_time_iso_8601": "2024-12-06T19:13:32.722605Z",
            "url": "https://files.pythonhosted.org/packages/0a/89/ad7e16c00f1618730ee40a3b517c6184a5a9ddd04b2b395b3464582f54ec/dclab-0.62.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1be83e83c777dc0a1c2c8b0b0ec12fef5f29fd752a0d0cca1dd5ecf46ac26f59",
                "md5": "1f1c74b6664ac2cb8759a54c2099ead2",
                "sha256": "96a0b0dc3b579ff3b8e541c3b64add7164d33bd6d600cea7e3eda43a4d120ac3"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1f1c74b6664ac2cb8759a54c2099ead2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 897198,
            "upload_time": "2024-12-06T19:23:29",
            "upload_time_iso_8601": "2024-12-06T19:23:29.257949Z",
            "url": "https://files.pythonhosted.org/packages/1b/e8/3e83c777dc0a1c2c8b0b0ec12fef5f29fd752a0d0cca1dd5ecf46ac26f59/dclab-0.62.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83a3e7fe84867901e5d690d73485bfae31757e0b2691d9cc22671fb4159fa285",
                "md5": "4e9110bbbe1da236c84918212fcafa56",
                "sha256": "0927ea7d4d571cc6ff1ef7db8a62aeeb0c474b465b5ca277a2a11b3da515c957"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e9110bbbe1da236c84918212fcafa56",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 2131727,
            "upload_time": "2024-12-06T19:22:23",
            "upload_time_iso_8601": "2024-12-06T19:22:23.050076Z",
            "url": "https://files.pythonhosted.org/packages/83/a3/e7fe84867901e5d690d73485bfae31757e0b2691d9cc22671fb4159fa285/dclab-0.62.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31086ea84fb4f6b89e4658de358e7f1d98889c5f21882f9872c696360412a4cb",
                "md5": "6dcbe716f64f3d0f609c8119caefcc05",
                "sha256": "47587d77a799140b1216494831609ecf8cad75e58c9cc3bc391acdcc7a2f330c"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6dcbe716f64f3d0f609c8119caefcc05",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 2204854,
            "upload_time": "2024-12-06T19:22:25",
            "upload_time_iso_8601": "2024-12-06T19:22:25.165132Z",
            "url": "https://files.pythonhosted.org/packages/31/08/6ea84fb4f6b89e4658de358e7f1d98889c5f21882f9872c696360412a4cb/dclab-0.62.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2970cb2d72a89a16ac78ddc26a57836ddf3d65ff8d728f54511fcfb22cebb45e",
                "md5": "d280d622b8cdf4df42c46a0cf09f0820",
                "sha256": "f5a8c8b327068bbe8f7579e56c09844190485b7d9f505dc25008dd226f294180"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d280d622b8cdf4df42c46a0cf09f0820",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 887131,
            "upload_time": "2024-12-06T19:13:05",
            "upload_time_iso_8601": "2024-12-06T19:13:05.430031Z",
            "url": "https://files.pythonhosted.org/packages/29/70/cb2d72a89a16ac78ddc26a57836ddf3d65ff8d728f54511fcfb22cebb45e/dclab-0.62.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "454a99a15319b900182c3e8a4822fa827344833c453020cdbbc8b84684bbb8a4",
                "md5": "8ae45ee43de8b4b38a10704e1b53eebd",
                "sha256": "c39ea9dfe30fcac48fcf1de0f0d30b77dfecfc48d1fef1db7b48ec1be98a1d70"
            },
            "downloads": -1,
            "filename": "dclab-0.62.7.tar.gz",
            "has_sig": false,
            "md5_digest": "8ae45ee43de8b4b38a10704e1b53eebd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.8",
            "size": 4767112,
            "upload_time": "2024-12-06T19:15:51",
            "upload_time_iso_8601": "2024-12-06T19:15:51.654017Z",
            "url": "https://files.pythonhosted.org/packages/45/4a/99a15319b900182c3e8a4822fa827344833c453020cdbbc8b84684bbb8a4/dclab-0.62.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-06 19:15:51",
    "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: 4.10809s