dclab


Namedclab JSON
Version 0.62.6 PyPI version JSON
download
home_pageNone
SummaryLibrary for real-time deformability cytometry (RT-DC)
upload_time2024-10-22 14:54:28
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/7c/41/6d08f646143ca9b6142053361c448ec07a42d51d39f786a2eeea66707615/dclab-0.62.6.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.6",
    "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": "9bcce10b0d3ba8410b75e09bd10413183a424a79ca0efb618937e3688038454d",
                "md5": "ff45aa50de82857c52ea4736ef4996e4",
                "sha256": "5a17d6c8a7e3f31b4e411b0706c9ea945633fedb1b36f5ebf10c85e5c53a6e9c"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff45aa50de82857c52ea4736ef4996e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 910921,
            "upload_time": "2024-10-22T15:01:49",
            "upload_time_iso_8601": "2024-10-22T15:01:49.868617Z",
            "url": "https://files.pythonhosted.org/packages/9b/cc/e10b0d3ba8410b75e09bd10413183a424a79ca0efb618937e3688038454d/dclab-0.62.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8b80b1c65043e65cfa2f7c0beeb27e0b37f0807b7a58dce219f7f845fa85884",
                "md5": "153335a23a1ba9910d0a7deac7f7e686",
                "sha256": "f6e49624087890efa07d356eeaa902f803f4bc7577457dc52d31305713e3353c"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "153335a23a1ba9910d0a7deac7f7e686",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 894335,
            "upload_time": "2024-10-22T15:00:12",
            "upload_time_iso_8601": "2024-10-22T15:00:12.158062Z",
            "url": "https://files.pythonhosted.org/packages/c8/b8/0b1c65043e65cfa2f7c0beeb27e0b37f0807b7a58dce219f7f845fa85884/dclab-0.62.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5e1f89c2cf3b2ecc396a47cd6a393af10d90c0b8f30c9ddb63021f66649dd50",
                "md5": "c46a2e6581f6d4c0d07622eed20258cc",
                "sha256": "7ecffdd1eb444285bfa629695ddf2264921a87e4002273ad2a3c5d2e7ebef4ea"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c46a2e6581f6d4c0d07622eed20258cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 2122049,
            "upload_time": "2024-10-22T15:07:00",
            "upload_time_iso_8601": "2024-10-22T15:07:00.894507Z",
            "url": "https://files.pythonhosted.org/packages/b5/e1/f89c2cf3b2ecc396a47cd6a393af10d90c0b8f30c9ddb63021f66649dd50/dclab-0.62.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75a5c4d9b6da0591390eddea83d79dbc8fd70e5d0648b60fb49a195fec2d0747",
                "md5": "3b20f783b21c63cfb863714db2dd3c10",
                "sha256": "9cf18a26ae479ee8f29e2ef725883251423841fc483ff7db66e370674a392562"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b20f783b21c63cfb863714db2dd3c10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 2196220,
            "upload_time": "2024-10-22T15:07:03",
            "upload_time_iso_8601": "2024-10-22T15:07:03.213158Z",
            "url": "https://files.pythonhosted.org/packages/75/a5/c4d9b6da0591390eddea83d79dbc8fd70e5d0648b60fb49a195fec2d0747/dclab-0.62.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b140ae1cb3098cd23efe43dad24e002c5754a8f18e57b01c41936c1992275117",
                "md5": "9abb4f70cf11bd96c1e2f2e6d30e2df4",
                "sha256": "533f990a81d54713cd56962eb04cea9cf801c0dc0ba45b0b8a6791a9d492daef"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9abb4f70cf11bd96c1e2f2e6d30e2df4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.8",
            "size": 884344,
            "upload_time": "2024-10-22T15:00:13",
            "upload_time_iso_8601": "2024-10-22T15:00:13.740703Z",
            "url": "https://files.pythonhosted.org/packages/b1/40/ae1cb3098cd23efe43dad24e002c5754a8f18e57b01c41936c1992275117/dclab-0.62.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31e4b07b28c914179f6611580143b2c5219e2f505a52ad7367fee409b65d2a49",
                "md5": "12ca9c33203264a765a875e294949252",
                "sha256": "071dab6ba403c657e4b29be4cdf5782f9d16ca68063f939a36dc08dda725b408"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12ca9c33203264a765a875e294949252",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 910507,
            "upload_time": "2024-10-22T15:01:51",
            "upload_time_iso_8601": "2024-10-22T15:01:51.749486Z",
            "url": "https://files.pythonhosted.org/packages/31/e4/b07b28c914179f6611580143b2c5219e2f505a52ad7367fee409b65d2a49/dclab-0.62.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd45ca379acf1d32ff1c875bc115dee48de04a3ff9c5da54c980337212b17536",
                "md5": "8c80626b6f5e0850d3c9d8d6d6f04fbe",
                "sha256": "3114eee4b384f9259b1f92b3a199b7fd90279b28172f863ec59883f9849842bd"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8c80626b6f5e0850d3c9d8d6d6f04fbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 893823,
            "upload_time": "2024-10-22T15:00:14",
            "upload_time_iso_8601": "2024-10-22T15:00:14.749466Z",
            "url": "https://files.pythonhosted.org/packages/fd/45/ca379acf1d32ff1c875bc115dee48de04a3ff9c5da54c980337212b17536/dclab-0.62.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea678d24d030ca9fad7cda2654c0675b3f9e177338106138185d89b23bf704b5",
                "md5": "e9e929ca2804c245a9b245c7ac3d7d8e",
                "sha256": "6dcfd090fc7e2bf9cc49228bb48c1df804f742f440fa1f2619ecf2e469b36ff7"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9e929ca2804c245a9b245c7ac3d7d8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 2247396,
            "upload_time": "2024-10-22T15:07:05",
            "upload_time_iso_8601": "2024-10-22T15:07:05.103756Z",
            "url": "https://files.pythonhosted.org/packages/ea/67/8d24d030ca9fad7cda2654c0675b3f9e177338106138185d89b23bf704b5/dclab-0.62.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ccd6847c97b7417f7c26f6f430217625a66e413336854c2053c9e21189fd2b8",
                "md5": "47114c39b46c70e23ce500879ead1661",
                "sha256": "ed4f8337b568da2c4d71e0f7f2b6566427dc098bb4c46860f2648760116a3ca5"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47114c39b46c70e23ce500879ead1661",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 2327092,
            "upload_time": "2024-10-22T15:07:06",
            "upload_time_iso_8601": "2024-10-22T15:07:06.473489Z",
            "url": "https://files.pythonhosted.org/packages/0c/cd/6847c97b7417f7c26f6f430217625a66e413336854c2053c9e21189fd2b8/dclab-0.62.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b419387b228d2281435862f451aaed182f84c8cddfc908a9d091d02e70ef7df",
                "md5": "b31547888efc3a90187f40beaed2070e",
                "sha256": "1589b05d181739b24e7e95991f0b333994e3366ea59995e62a405c947ca619d8"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b31547888efc3a90187f40beaed2070e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.8",
            "size": 884355,
            "upload_time": "2024-10-22T15:00:16",
            "upload_time_iso_8601": "2024-10-22T15:00:16.118995Z",
            "url": "https://files.pythonhosted.org/packages/8b/41/9387b228d2281435862f451aaed182f84c8cddfc908a9d091d02e70ef7df/dclab-0.62.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba62095aff0150f6de3a912498ec91e0eaddca8c681c2f1aa1522f6536cf2e56",
                "md5": "0026cfeef4b555d626f5371570212dec",
                "sha256": "18ace5ea9d2814a2310a3e138d7e027e62871d527c139c1f932af5faa6c9113e"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0026cfeef4b555d626f5371570212dec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 913279,
            "upload_time": "2024-10-22T15:01:53",
            "upload_time_iso_8601": "2024-10-22T15:01:53.633211Z",
            "url": "https://files.pythonhosted.org/packages/ba/62/095aff0150f6de3a912498ec91e0eaddca8c681c2f1aa1522f6536cf2e56/dclab-0.62.6-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a0f2a1ac0d59f16dddf9c4f008ad85497a02a2f8a4edb3242fb242fe6895633",
                "md5": "3fc16ac1bd53849802dfc6da3974471a",
                "sha256": "3ff91c140204ba5c5cbd73f574d0689be32cfd76de277d69cf49dab84c2ca829"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3fc16ac1bd53849802dfc6da3974471a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 896437,
            "upload_time": "2024-10-22T15:00:17",
            "upload_time_iso_8601": "2024-10-22T15:00:17.169006Z",
            "url": "https://files.pythonhosted.org/packages/5a/0f/2a1ac0d59f16dddf9c4f008ad85497a02a2f8a4edb3242fb242fe6895633/dclab-0.62.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7af4eb9022730583ab0dfea4c500d9aef5eb15f9d5e97853b7807b92b70533f",
                "md5": "6ccd80c0e03dc60e2daea258bd7f0a84",
                "sha256": "db99133749c4a8607d5046e504bcba2cd63102a57e596c0e3569118f97dcb5b7"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ccd80c0e03dc60e2daea258bd7f0a84",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 2215203,
            "upload_time": "2024-10-22T15:07:07",
            "upload_time_iso_8601": "2024-10-22T15:07:07.986707Z",
            "url": "https://files.pythonhosted.org/packages/d7/af/4eb9022730583ab0dfea4c500d9aef5eb15f9d5e97853b7807b92b70533f/dclab-0.62.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01fed7465e78d234345f67650f49e02cb011d9bc49d44db17392304621d6ef82",
                "md5": "ebdb861648203d6ba263ed0c4d183652",
                "sha256": "09bce263f40142136c2fc8aee7c609614ad34fd27b5b6b1ae9368a422f2038bc"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebdb861648203d6ba263ed0c4d183652",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.8",
            "size": 2285057,
            "upload_time": "2024-10-22T15:07:10",
            "upload_time_iso_8601": "2024-10-22T15:07:10.234755Z",
            "url": "https://files.pythonhosted.org/packages/01/fe/d7465e78d234345f67650f49e02cb011d9bc49d44db17392304621d6ef82/dclab-0.62.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beb0ba8a2c21e8a2a6265515766a523c87894e2dbaddb14dbbdb6c066d8a3026",
                "md5": "a358c67181812032fa7b3c39debffdbd",
                "sha256": "3b85832e4f85bc5cbda60960d5f8be1f58993d3f56a4b16efe4d6a54bce08016"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a358c67181812032fa7b3c39debffdbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 909478,
            "upload_time": "2024-10-22T15:01:54",
            "upload_time_iso_8601": "2024-10-22T15:01:54.816069Z",
            "url": "https://files.pythonhosted.org/packages/be/b0/ba8a2c21e8a2a6265515766a523c87894e2dbaddb14dbbdb6c066d8a3026/dclab-0.62.6-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8ad8a350295b41230460c66c06c54899663b20e81f87f4033a3d8aeb38ac7be",
                "md5": "12c64feb5a49300a9a64a04447468d3f",
                "sha256": "87940d36ef45be9d0dc3b5995e8663c305d9415e01cc84f21ae8ed0dcc42b011"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "12c64feb5a49300a9a64a04447468d3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 892312,
            "upload_time": "2024-10-22T15:00:19",
            "upload_time_iso_8601": "2024-10-22T15:00:19.129950Z",
            "url": "https://files.pythonhosted.org/packages/d8/ad/8a350295b41230460c66c06c54899663b20e81f87f4033a3d8aeb38ac7be/dclab-0.62.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a3f57a0d10c184e61ae4d183d15a37de666073702bb874b5f1bd0e3fca53f77",
                "md5": "269a623596ccf274bdb0583d348740a3",
                "sha256": "fbd1a9f93337bc7456fc5d551b1354d4b0a4c5847ec6fa28a626c206c37e464f"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "269a623596ccf274bdb0583d348740a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 2200210,
            "upload_time": "2024-10-22T15:07:11",
            "upload_time_iso_8601": "2024-10-22T15:07:11.588429Z",
            "url": "https://files.pythonhosted.org/packages/8a/3f/57a0d10c184e61ae4d183d15a37de666073702bb874b5f1bd0e3fca53f77/dclab-0.62.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c52636c1dc19ef9b5822703c29795bf43ca30565243a5fbdde51bb0dcaad190a",
                "md5": "9fe98345d097cadf24c6caef835c7ffd",
                "sha256": "231304792f2f57979ee17831f4f98b2ec9cda25c511d50976c1fd1deed255443"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fe98345d097cadf24c6caef835c7ffd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.8",
            "size": 2272690,
            "upload_time": "2024-10-22T15:07:13",
            "upload_time_iso_8601": "2024-10-22T15:07:13.684702Z",
            "url": "https://files.pythonhosted.org/packages/c5/26/36c1dc19ef9b5822703c29795bf43ca30565243a5fbdde51bb0dcaad190a/dclab-0.62.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa019d37184fb7a4480f1446f63dfb62ca222458c67e16e929a38e8400bdd63d",
                "md5": "38e47151427d74094103be80d7fcd8a7",
                "sha256": "f3cc8828b58d690063896d7f40bd8185747112900d6f01e8b89f1df9a4dd42c1"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38e47151427d74094103be80d7fcd8a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 912740,
            "upload_time": "2024-10-22T15:01:56",
            "upload_time_iso_8601": "2024-10-22T15:01:56.180348Z",
            "url": "https://files.pythonhosted.org/packages/fa/01/9d37184fb7a4480f1446f63dfb62ca222458c67e16e929a38e8400bdd63d/dclab-0.62.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "207b6612e500d5ef14cc6cb38481246cc95bb46a95ede8b282634fb08f39bfbf",
                "md5": "b94b2ce2a1990b4b1f3ec9b968135342",
                "sha256": "e45efe82b585cd47b8630e4c3813213b80d918cd42abf65652aa75ef55ca8c6b"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b94b2ce2a1990b4b1f3ec9b968135342",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 895779,
            "upload_time": "2024-10-22T15:00:21",
            "upload_time_iso_8601": "2024-10-22T15:00:21.524289Z",
            "url": "https://files.pythonhosted.org/packages/20/7b/6612e500d5ef14cc6cb38481246cc95bb46a95ede8b282634fb08f39bfbf/dclab-0.62.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "108061b9146b17868c6394b6f416134734c641a145846a0945785d9cc7be3aad",
                "md5": "00f3fe1b442fdfbfa2b48e6f4c0907b2",
                "sha256": "490d1ef9b867883ab1f9f49c20e1043d152a9d7f28bebf24ab44484dfcb85dfc"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00f3fe1b442fdfbfa2b48e6f4c0907b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 2157874,
            "upload_time": "2024-10-22T15:07:15",
            "upload_time_iso_8601": "2024-10-22T15:07:15.150912Z",
            "url": "https://files.pythonhosted.org/packages/10/80/61b9146b17868c6394b6f416134734c641a145846a0945785d9cc7be3aad/dclab-0.62.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "616dfd3e9088cdac87e0a82aca8287348064907f139e359d8a0c686a9ae04391",
                "md5": "f91b0ec419e57fa9cca043ab44aea86d",
                "sha256": "fa790fff1bb38f7e506024f0057c0507f435e845e723b3d4c66313de3dd859f2"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f91b0ec419e57fa9cca043ab44aea86d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 2241955,
            "upload_time": "2024-10-22T15:07:16",
            "upload_time_iso_8601": "2024-10-22T15:07:16.581503Z",
            "url": "https://files.pythonhosted.org/packages/61/6d/fd3e9088cdac87e0a82aca8287348064907f139e359d8a0c686a9ae04391/dclab-0.62.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75dfa818525feacf6e2e4a3dfb58a3eed4e41c7ebfb630614087d3e5ce232b7b",
                "md5": "5131749542dacc813b4621b607309084",
                "sha256": "80c790e4d998418e5a6650a77581cf6d5315bf769488d7dd65d8bc0635fd0b45"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5131749542dacc813b4621b607309084",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.8",
            "size": 886243,
            "upload_time": "2024-10-22T15:00:18",
            "upload_time_iso_8601": "2024-10-22T15:00:18.210468Z",
            "url": "https://files.pythonhosted.org/packages/75/df/a818525feacf6e2e4a3dfb58a3eed4e41c7ebfb630614087d3e5ce232b7b/dclab-0.62.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b85a515c7bc64557699fc4a6d1c76afc1f5eacd355eac2e4dead91fd767d385f",
                "md5": "baf78d22603591755d47b5923fafdfc3",
                "sha256": "af7a8d075e25c0abb5b708ebc55bdc59f88d95125bb7619c6a782a6cea8e3fd3"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baf78d22603591755d47b5923fafdfc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 912593,
            "upload_time": "2024-10-22T15:01:58",
            "upload_time_iso_8601": "2024-10-22T15:01:58.181560Z",
            "url": "https://files.pythonhosted.org/packages/b8/5a/515c7bc64557699fc4a6d1c76afc1f5eacd355eac2e4dead91fd767d385f/dclab-0.62.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "046482087476600066aef780b7d16b90e0ca3782b268a7fca553735cc0a9ee10",
                "md5": "6cead4f9126f75cf33ebc48b6bc557f8",
                "sha256": "be44a9f249ff9463b975fcb65c3584c767d0fc97b5066aecf02a65062e4173a8"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6cead4f9126f75cf33ebc48b6bc557f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 896121,
            "upload_time": "2024-10-22T15:00:23",
            "upload_time_iso_8601": "2024-10-22T15:00:23.780270Z",
            "url": "https://files.pythonhosted.org/packages/04/64/82087476600066aef780b7d16b90e0ca3782b268a7fca553735cc0a9ee10/dclab-0.62.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3806014609bff9fdf9eaf6829ff233dceb5a64ecf8717f4e9b2d5ea0ceeedbdd",
                "md5": "f5d611bd53076c04e2ea397adc12068c",
                "sha256": "f00599da4a7ff15a7011bf5c0128462ac31a5534dc3fba268e1f0ad5ef7fb8b8"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5d611bd53076c04e2ea397adc12068c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 2130652,
            "upload_time": "2024-10-22T15:07:17",
            "upload_time_iso_8601": "2024-10-22T15:07:17.973524Z",
            "url": "https://files.pythonhosted.org/packages/38/06/014609bff9fdf9eaf6829ff233dceb5a64ecf8717f4e9b2d5ea0ceeedbdd/dclab-0.62.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd333858b1e37b33e4b96839aee6cfbf7e6e57731ade5d0cb352d8a478b444d5",
                "md5": "77494e61b3fa9e68804a7d00696edcb7",
                "sha256": "94ca267385c6584cefb6947de6635bf089abf7e9d8c18221c035c39853a1f916"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77494e61b3fa9e68804a7d00696edcb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 2204054,
            "upload_time": "2024-10-22T15:07:19",
            "upload_time_iso_8601": "2024-10-22T15:07:19.602953Z",
            "url": "https://files.pythonhosted.org/packages/fd/33/3858b1e37b33e4b96839aee6cfbf7e6e57731ade5d0cb352d8a478b444d5/dclab-0.62.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6b52d6c4a2bddf295eb7e055b0245cefb6ddcf6458fc5458dff16c5eb3383fe",
                "md5": "bb929be8c1e387d03da3e715feaaa2e6",
                "sha256": "e2a9e4ce1dbaa9c1a182565ad48a2685c9d4cf1d5b045bc94cbfcfd28f718e1d"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bb929be8c1e387d03da3e715feaaa2e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.8",
            "size": 886051,
            "upload_time": "2024-10-22T15:00:20",
            "upload_time_iso_8601": "2024-10-22T15:00:20.942528Z",
            "url": "https://files.pythonhosted.org/packages/c6/b5/2d6c4a2bddf295eb7e055b0245cefb6ddcf6458fc5458dff16c5eb3383fe/dclab-0.62.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c416d08f646143ca9b6142053361c448ec07a42d51d39f786a2eeea66707615",
                "md5": "b2ef1042e46ce8bb292035a169bf597d",
                "sha256": "4556e07f954dfea10c6124b6a2ad26ad7e35e9f3217dd996400d49731442c19c"
            },
            "downloads": -1,
            "filename": "dclab-0.62.6.tar.gz",
            "has_sig": false,
            "md5_digest": "b2ef1042e46ce8bb292035a169bf597d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.8",
            "size": 4764615,
            "upload_time": "2024-10-22T14:54:28",
            "upload_time_iso_8601": "2024-10-22T14:54:28.443002Z",
            "url": "https://files.pythonhosted.org/packages/7c/41/6d08f646143ca9b6142053361c448ec07a42d51d39f786a2eeea66707615/dclab-0.62.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-22 14:54:28",
    "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: 0.53261s