qutip-qoc


Namequtip-qoc JSON
Version 0.1.1 PyPI version JSON
download
home_pagehttps://github.com/qutip/qutip-qoc
SummaryThe QuTiP quantum optimal control package
upload_time2024-10-04 07:50:03
maintainerNone
docs_urlNone
authorPatrick Hopf, Paul Menczel, Alexander Pitchford, Neill Lambert
requires_pythonNone
licenseBSD 3-Clause License
keywords quantum physics dynamics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # QuTiP - Quantum Optimal Control

The `qutip-qoc` package builds up on the `qutip-qtrl` [package](https://github.com/qutip/qutip-qtrl).

It enhances it by providing two additional algorithms to optimize analytically defined control functions.
The first one is an extension of Gradient Optimization of Analytic conTrols [(GOAT)](https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.150401).
The second one (JOPT) leverages QuTiPs version 5 new diffrax abilities to directly calculate gradients of JAX defined control functions using automatic differentiation.

Both algorithms consist of a two-layer approach to find global optimal values for parameterized analytical control functions.
The global optimization layer provides `scipy.optimize.dual_annealing` and `scipy.optimize.basinhopping`, while the local minimization layer supports all
gradient driven `scipy.optimize.minimize` methods.

The package also aims for a more general way of defining control problems with QuTiP and makes switching between the four control algorithms (GOAT, JOPT, and GRAPE and CRAB implemented in qutip-qtrl) very easy.

As with `qutip-qtrl`, the `qutip-qoc` package aims at providing advanced tools for the optimal control of quantum devices.
Compared to other libraries for quantum optimal control, `qutip-qoc` puts additional emphasis on the physics layer and the interaction with the QuTiP package.
Along with the extended GOAT and JOPT algorithms the package offers support for both the CRAB and GRAPE methods defined in `qutip-qtrl`.

If you would like to know the future development plan and ideas, have a look at the [qutip roadmap and ideas](https://qutip.readthedocs.io/en/latest/development/roadmap.html).

## Quick start

To install the package, use

```
pip install qutip-qoc
```

## Documentation and tutorials

The documentation of `qutip-qoc` updated to the latest development version is hosted at [qutip-qoc.readthedocs.io](https://qutip-qoc.readthedocs.io/en/latest/).
Tutorials related to using quantum optimal control in `qutip-qoc` can be found [_here_](https://qutip.org/qutip-tutorials/#optimal-control).

## Installation from source

If you want to edit the source code, please download the source code and run the following command under the root `qutip-qoc` folder,

```
pip install --upgrade pip
pip install -e .
```

which makes sure that you are up to date with the latest `pip` version. Contribution guidelines are available [_here_](https://qutip-qoc.readthedocs.io/en/latest/contribution-code.html).

To build and test the documentation, additional packages need to be installed:

```
pip install pytest matplotlib sphinx sphinxcontrib-bibtex numpydoc sphinx_rtd_theme sphinxcontrib-bibtex
```

Under the `doc` directory, use

```
make html
```

to build the documentation, or

```
make doctest
```

to test the code in the documentation.

## Testing

To test the installation, choose the correct branch that matches with the version, e.g., `qutip-qoc-0.2.X` for version 0.2. Then download the source code and run from the `qutip-qoc` directory.

```
pytest tests
```

## Citing `qutip-qoc`

If you use `qutip-qoc` in your research, please cite the original QuTiP papers that are available [here](https://dml.riken.jp/?s=QuTiP).

## Support

This package is supported and maintained by the same developers group as QuTiP.

[![Powered by NumFOCUS](https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A)](https://numfocus.org)
[![Unitary Fund](https://img.shields.io/badge/Supported%20By-UNITARY%20FUND-brightgreen.svg?style=flat)](https://unitary.fund)

QuTiP development is supported by [Nori's lab](http://dml.riken.jp/)
at RIKEN, by the University of Sherbrooke, by Chalmers University of Technology, by Macquarie University and by Aberystwyth University,
[among other supporting organizations](http://qutip.org/#supporting-organizations).

## License

[![license](https://img.shields.io/badge/license-New%20BSD-blue.svg)](http://en.wikipedia.org/wiki/BSD_licenses#3-clause_license_.28.22Revised_BSD_License.22.2C_.22New_BSD_License.22.2C_or_.22Modified_BSD_License.22.29)

You are free to use this software, with or without modification, provided that the conditions listed in the LICENSE.txt file are satisfied.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/qutip/qutip-qoc",
    "name": "qutip-qoc",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "quantum, physics, dynamics",
    "author": "Patrick Hopf, Paul Menczel, Alexander Pitchford, Neill Lambert",
    "author_email": "qutip-admin@googlegroups.com",
    "download_url": null,
    "platform": "Linux",
    "description": "# QuTiP - Quantum Optimal Control\n\nThe `qutip-qoc` package builds up on the `qutip-qtrl` [package](https://github.com/qutip/qutip-qtrl).\n\nIt enhances it by providing two additional algorithms to optimize analytically defined control functions.\nThe first one is an extension of Gradient Optimization of Analytic conTrols [(GOAT)](https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.150401).\nThe second one (JOPT) leverages QuTiPs version 5 new diffrax abilities to directly calculate gradients of JAX defined control functions using automatic differentiation.\n\nBoth algorithms consist of a two-layer approach to find global optimal values for parameterized analytical control functions.\nThe global optimization layer provides `scipy.optimize.dual_annealing` and `scipy.optimize.basinhopping`, while the local minimization layer supports all\ngradient driven `scipy.optimize.minimize` methods.\n\nThe package also aims for a more general way of defining control problems with QuTiP and makes switching between the four control algorithms (GOAT, JOPT, and GRAPE and CRAB implemented in qutip-qtrl) very easy.\n\nAs with `qutip-qtrl`, the `qutip-qoc` package aims at providing advanced tools for the optimal control of quantum devices.\nCompared to other libraries for quantum optimal control, `qutip-qoc` puts additional emphasis on the physics layer and the interaction with the QuTiP package.\nAlong with the extended GOAT and JOPT algorithms the package offers support for both the CRAB and GRAPE methods defined in `qutip-qtrl`.\n\nIf you would like to know the future development plan and ideas, have a look at the [qutip roadmap and ideas](https://qutip.readthedocs.io/en/latest/development/roadmap.html).\n\n## Quick start\n\nTo install the package, use\n\n```\npip install qutip-qoc\n```\n\n## Documentation and tutorials\n\nThe documentation of `qutip-qoc` updated to the latest development version is hosted at [qutip-qoc.readthedocs.io](https://qutip-qoc.readthedocs.io/en/latest/).\nTutorials related to using quantum optimal control in `qutip-qoc` can be found [_here_](https://qutip.org/qutip-tutorials/#optimal-control).\n\n## Installation from source\n\nIf you want to edit the source code, please download the source code and run the following command under the root `qutip-qoc` folder,\n\n```\npip install --upgrade pip\npip install -e .\n```\n\nwhich makes sure that you are up to date with the latest `pip` version. Contribution guidelines are available [_here_](https://qutip-qoc.readthedocs.io/en/latest/contribution-code.html).\n\nTo build and test the documentation, additional packages need to be installed:\n\n```\npip install pytest matplotlib sphinx sphinxcontrib-bibtex numpydoc sphinx_rtd_theme sphinxcontrib-bibtex\n```\n\nUnder the `doc` directory, use\n\n```\nmake html\n```\n\nto build the documentation, or\n\n```\nmake doctest\n```\n\nto test the code in the documentation.\n\n## Testing\n\nTo test the installation, choose the correct branch that matches with the version, e.g., `qutip-qoc-0.2.X` for version 0.2. Then download the source code and run from the `qutip-qoc` directory.\n\n```\npytest tests\n```\n\n## Citing `qutip-qoc`\n\nIf you use `qutip-qoc` in your research, please cite the original QuTiP papers that are available [here](https://dml.riken.jp/?s=QuTiP).\n\n## Support\n\nThis package is supported and maintained by the same developers group as QuTiP.\n\n[![Powered by NumFOCUS](https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A)](https://numfocus.org)\n[![Unitary Fund](https://img.shields.io/badge/Supported%20By-UNITARY%20FUND-brightgreen.svg?style=flat)](https://unitary.fund)\n\nQuTiP development is supported by [Nori's lab](http://dml.riken.jp/)\nat RIKEN, by the University of Sherbrooke, by Chalmers University of Technology, by Macquarie University and by Aberystwyth University,\n[among other supporting organizations](http://qutip.org/#supporting-organizations).\n\n## License\n\n[![license](https://img.shields.io/badge/license-New%20BSD-blue.svg)](http://en.wikipedia.org/wiki/BSD_licenses#3-clause_license_.28.22Revised_BSD_License.22.2C_.22New_BSD_License.22.2C_or_.22Modified_BSD_License.22.29)\n\nYou are free to use this software, with or without modification, provided that the conditions listed in the LICENSE.txt file are satisfied.\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "The QuTiP quantum optimal control package",
    "version": "0.1.1",
    "project_urls": {
        "Homepage": "https://github.com/qutip/qutip-qoc"
    },
    "split_keywords": [
        "quantum",
        " physics",
        " dynamics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dea7b09365db34b7c822e3b7d3b982730343cde75ae68b6b7ec0328a98e898c",
                "md5": "8a0039939718873abbf34ebd0502b8f4",
                "sha256": "99736e250cc199ca4dcb67d40dc296dee357e6915e8d14184d4b0d1a12bddc41"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8a0039939718873abbf34ebd0502b8f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 318461,
            "upload_time": "2024-10-04T07:50:03",
            "upload_time_iso_8601": "2024-10-04T07:50:03.445061Z",
            "url": "https://files.pythonhosted.org/packages/1d/ea/7b09365db34b7c822e3b7d3b982730343cde75ae68b6b7ec0328a98e898c/qutip_qoc-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "967c6e628e92c5870f1b28fd9b003e8c80904f13facc03d7639be2c2926c99d8",
                "md5": "480a55df7d15ea6f37f9756154083712",
                "sha256": "aef155e6dbb62641312bb8aa93af0b679ae3267ff968ef85816e13f3419a3297"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "480a55df7d15ea6f37f9756154083712",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 936227,
            "upload_time": "2024-10-04T07:50:05",
            "upload_time_iso_8601": "2024-10-04T07:50:05.097645Z",
            "url": "https://files.pythonhosted.org/packages/96/7c/6e628e92c5870f1b28fd9b003e8c80904f13facc03d7639be2c2926c99d8/qutip_qoc-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e13e26c1a9ff390bdc06cf5f0e9d569bc04871db4435ea65a42c30a155a5a3bf",
                "md5": "5c99c92b02946e159a87431ccd8f80d0",
                "sha256": "2cbe1c6c5d975890c334af6fd85f5075ce59bf3d156c1ae309f5f8466e2bbede"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5c99c92b02946e159a87431ccd8f80d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 888596,
            "upload_time": "2024-10-04T07:50:07",
            "upload_time_iso_8601": "2024-10-04T07:50:07.231898Z",
            "url": "https://files.pythonhosted.org/packages/e1/3e/26c1a9ff390bdc06cf5f0e9d569bc04871db4435ea65a42c30a155a5a3bf/qutip_qoc-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6982c9404f254cb902eda5b61cb18dff2845858fa9b1270e56291f27b5ec2308",
                "md5": "a1d0a62bb19656ff10825ccad0fea5ab",
                "sha256": "6658c2f6b97c074add5844d7b902ec5779f03b68549a2909fb665934d1dca045"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a1d0a62bb19656ff10825ccad0fea5ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 879447,
            "upload_time": "2024-10-04T07:50:08",
            "upload_time_iso_8601": "2024-10-04T07:50:08.744629Z",
            "url": "https://files.pythonhosted.org/packages/69/82/c9404f254cb902eda5b61cb18dff2845858fa9b1270e56291f27b5ec2308/qutip_qoc-0.1.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a250f2248709e4c4ef226ef13d822646eec5e6df12528ae848fbfdefb8956c2",
                "md5": "2f2466ba75ec757047b11b13e6ef2a71",
                "sha256": "eefe961362d2027143cdf960465aaf68ed0b565c3c5c0ccf0cf17aef57aeca22"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f2466ba75ec757047b11b13e6ef2a71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 903054,
            "upload_time": "2024-10-04T07:50:10",
            "upload_time_iso_8601": "2024-10-04T07:50:10.194266Z",
            "url": "https://files.pythonhosted.org/packages/7a/25/0f2248709e4c4ef226ef13d822646eec5e6df12528ae848fbfdefb8956c2/qutip_qoc-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33a0a5828a5784eb8f4c3ec3e6efd78fb3caeb51eda85877358717c10f0b856f",
                "md5": "9a127fc43ae69184c7096ce20596f431",
                "sha256": "6c9c99c23c9bd6caba8c7e1272b00775d20e3c38d2c38bd4e705036ddb73b496"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "9a127fc43ae69184c7096ce20596f431",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 298557,
            "upload_time": "2024-10-04T07:50:11",
            "upload_time_iso_8601": "2024-10-04T07:50:11.692550Z",
            "url": "https://files.pythonhosted.org/packages/33/a0/a5828a5784eb8f4c3ec3e6efd78fb3caeb51eda85877358717c10f0b856f/qutip_qoc-0.1.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a847b14c9c47e455dbfd705ef73b0c2eaf623a4b28de56e2b0c72f66bf1361fe",
                "md5": "091c05afb88bae0121e3238d69738ab8",
                "sha256": "87f9a84e3b1df5ba93e7f76f6d45c59244b2edaabf8240f4e42437cb0d8b0322"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "091c05afb88bae0121e3238d69738ab8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 317412,
            "upload_time": "2024-10-04T07:50:13",
            "upload_time_iso_8601": "2024-10-04T07:50:13.511255Z",
            "url": "https://files.pythonhosted.org/packages/a8/47/b14c9c47e455dbfd705ef73b0c2eaf623a4b28de56e2b0c72f66bf1361fe/qutip_qoc-0.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c52f2c5f73f8c99667ec598e17ed4d849af6f3aa584241982cd141bfffc9e056",
                "md5": "7305a3d05c021ceb42a6c85652bf0f91",
                "sha256": "491f58cc1ee918a09164539456c9b586e7a8a64d5a156745b43803aae5c5b1dd"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7305a3d05c021ceb42a6c85652bf0f91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 318808,
            "upload_time": "2024-10-04T07:50:15",
            "upload_time_iso_8601": "2024-10-04T07:50:15.354926Z",
            "url": "https://files.pythonhosted.org/packages/c5/2f/2c5f73f8c99667ec598e17ed4d849af6f3aa584241982cd141bfffc9e056/qutip_qoc-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e8f7be810ab5a83e8988dc4755e2c51380f5b887e5ca700226da75ce0836e7e",
                "md5": "c9b252d6759515b772c4dd9378cf73b6",
                "sha256": "01430073b354d296fb6017d5dacccc3948ffc40e0cc5a3841d78fbbb915e8857"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9b252d6759515b772c4dd9378cf73b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 997158,
            "upload_time": "2024-10-04T07:50:16",
            "upload_time_iso_8601": "2024-10-04T07:50:16.807201Z",
            "url": "https://files.pythonhosted.org/packages/2e/8f/7be810ab5a83e8988dc4755e2c51380f5b887e5ca700226da75ce0836e7e/qutip_qoc-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc806228f072f87fe9fd9d9f763e5300e541da8df8b2d96f41eb72b196a5cfe6",
                "md5": "164fcedbb7bcb8fe2a93a0f1f6a921ef",
                "sha256": "aaee072e8b693289f1fbbfe23195c272a80e492267abebf9fa2728ea51e50ba6"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "164fcedbb7bcb8fe2a93a0f1f6a921ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 949552,
            "upload_time": "2024-10-04T07:50:19",
            "upload_time_iso_8601": "2024-10-04T07:50:19.547542Z",
            "url": "https://files.pythonhosted.org/packages/dc/80/6228f072f87fe9fd9d9f763e5300e541da8df8b2d96f41eb72b196a5cfe6/qutip_qoc-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a32b8fbe391d528f792844c42aeb48958f1f04ac29784438c6adacb9daa9ab5e",
                "md5": "4140ca94300e0375ecde7bf6ecd438f4",
                "sha256": "700cdce1cdbaddcd43db1c7c04dbef9b8913d5dacba3e7fd24c8915994f707b7"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4140ca94300e0375ecde7bf6ecd438f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 929587,
            "upload_time": "2024-10-04T07:50:21",
            "upload_time_iso_8601": "2024-10-04T07:50:21.158735Z",
            "url": "https://files.pythonhosted.org/packages/a3/2b/8fbe391d528f792844c42aeb48958f1f04ac29784438c6adacb9daa9ab5e/qutip_qoc-0.1.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5b62ddd6c015e691cd30318e65f8f0eb3450ae63084036561ffa2dfddd97b5b",
                "md5": "0f58822240a523cb7ea23b09ff47c6f1",
                "sha256": "d578032b3335f9252a2e0bd026421a560f49c1e397de052bae7beabf87c94b52"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f58822240a523cb7ea23b09ff47c6f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 973356,
            "upload_time": "2024-10-04T07:50:22",
            "upload_time_iso_8601": "2024-10-04T07:50:22.632096Z",
            "url": "https://files.pythonhosted.org/packages/b5/b6/2ddd6c015e691cd30318e65f8f0eb3450ae63084036561ffa2dfddd97b5b/qutip_qoc-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91a5594dfbd8255ab36f0624cf2bf7fc830c2544487963a69bbd71e85ce6de08",
                "md5": "4593dac759b8c21d34a2c6277566d675",
                "sha256": "eb678c65c4e863b586b6b41970f3bef191b6b840924a4adcef6a966934effe52"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4593dac759b8c21d34a2c6277566d675",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 298177,
            "upload_time": "2024-10-04T07:50:24",
            "upload_time_iso_8601": "2024-10-04T07:50:24.496879Z",
            "url": "https://files.pythonhosted.org/packages/91/a5/594dfbd8255ab36f0624cf2bf7fc830c2544487963a69bbd71e85ce6de08/qutip_qoc-0.1.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58be3b9418f590c2eb1d9cab79ad44a2b37bfd509802075de97488d5c46bfac2",
                "md5": "ee74aaba46ec6f7eab101f10c382a79f",
                "sha256": "0ee1b063610b542acfba9fc314db4beb8d75f80a375f2024ccf86cd658f34463"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ee74aaba46ec6f7eab101f10c382a79f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 317484,
            "upload_time": "2024-10-04T07:50:26",
            "upload_time_iso_8601": "2024-10-04T07:50:26.203760Z",
            "url": "https://files.pythonhosted.org/packages/58/be/3b9418f590c2eb1d9cab79ad44a2b37bfd509802075de97488d5c46bfac2/qutip_qoc-0.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e3c6b23df4f20902d9afc0dd341fb6f42380954653c6c4f96a8d035573679d9",
                "md5": "059e9974f102651f15077b4db77a0638",
                "sha256": "6d5e7a7e94d85a5d800fb7a572a980fc160478c1da71cb43fa4276d9bcf168f8"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "059e9974f102651f15077b4db77a0638",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 320078,
            "upload_time": "2024-10-04T07:50:27",
            "upload_time_iso_8601": "2024-10-04T07:50:27.815110Z",
            "url": "https://files.pythonhosted.org/packages/7e/3c/6b23df4f20902d9afc0dd341fb6f42380954653c6c4f96a8d035573679d9/qutip_qoc-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d23a421ba799be2977846d47a65d27fcd2669c394a63d21815458b14bdf8998f",
                "md5": "98128e24e20c5b6656ef1af78587f97d",
                "sha256": "ac0e210d91ee186542dc4b352094b3088e85a268e19f9fe4b0b0d738dfa50cf4"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98128e24e20c5b6656ef1af78587f97d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 989027,
            "upload_time": "2024-10-04T07:50:29",
            "upload_time_iso_8601": "2024-10-04T07:50:29.060898Z",
            "url": "https://files.pythonhosted.org/packages/d2/3a/421ba799be2977846d47a65d27fcd2669c394a63d21815458b14bdf8998f/qutip_qoc-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7dbe584b0d114e7095cb403e930ee9f1bf035d0934da52329527d7443e84339",
                "md5": "a26b75b956c31348ba608e125ec8a2d3",
                "sha256": "e144a44abdde679f4eeb5e90a922cbf015772c6357180dbc0fe73ac104052cb9"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a26b75b956c31348ba608e125ec8a2d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 928649,
            "upload_time": "2024-10-04T07:50:30",
            "upload_time_iso_8601": "2024-10-04T07:50:30.729847Z",
            "url": "https://files.pythonhosted.org/packages/d7/db/e584b0d114e7095cb403e930ee9f1bf035d0934da52329527d7443e84339/qutip_qoc-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d456080b9a4eaca23d67245762d794d538564d686ad075e3ede3cef5b539a9b7",
                "md5": "bdb9931700f495fd41195e2744ca5159",
                "sha256": "d80c1398ed859da862ef481a8722cf1f2c60482d7ccb3ac340c9e362e73dcdd4"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bdb9931700f495fd41195e2744ca5159",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 913714,
            "upload_time": "2024-10-04T07:50:32",
            "upload_time_iso_8601": "2024-10-04T07:50:32.235938Z",
            "url": "https://files.pythonhosted.org/packages/d4/56/080b9a4eaca23d67245762d794d538564d686ad075e3ede3cef5b539a9b7/qutip_qoc-0.1.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96be1e6f38bdfb959c954076ae311b7add517fc1e85d5420259e7b6c704cbbf7",
                "md5": "fba7442797432703126c22a718c72c60",
                "sha256": "5d4326dfd111e68d03e93b31c19a4108779dfae4fb9a041b647ae258c51e75ed"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fba7442797432703126c22a718c72c60",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 957090,
            "upload_time": "2024-10-04T07:50:33",
            "upload_time_iso_8601": "2024-10-04T07:50:33.710176Z",
            "url": "https://files.pythonhosted.org/packages/96/be/1e6f38bdfb959c954076ae311b7add517fc1e85d5420259e7b6c704cbbf7/qutip_qoc-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6300c9c099981cc35cdedcb3c43a41ec9578c4814b29d866d23e2cda466ce57",
                "md5": "b51bd58ea29b79179ae26dfce5b007d7",
                "sha256": "5fedfd15a5112484a2bf0d192bd48f209322249c6ce7bdd19de20a4a6328dccd"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "b51bd58ea29b79179ae26dfce5b007d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 297242,
            "upload_time": "2024-10-04T07:50:35",
            "upload_time_iso_8601": "2024-10-04T07:50:35.503183Z",
            "url": "https://files.pythonhosted.org/packages/a6/30/0c9c099981cc35cdedcb3c43a41ec9578c4814b29d866d23e2cda466ce57/qutip_qoc-0.1.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32c2058bf3071b44e656eb222c4d46d363462a6f885d81a7d207e7d41887011c",
                "md5": "79d5abeeee81e22da09137c5afdbf9aa",
                "sha256": "17651b23de941f20bfe29d6208316f8689e19dd1251d0e235926f5509bfdedc4"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "79d5abeeee81e22da09137c5afdbf9aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 317074,
            "upload_time": "2024-10-04T07:50:36",
            "upload_time_iso_8601": "2024-10-04T07:50:36.920209Z",
            "url": "https://files.pythonhosted.org/packages/32/c2/058bf3071b44e656eb222c4d46d363462a6f885d81a7d207e7d41887011c/qutip_qoc-0.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab86fe07a7212d8dae772da650ae7b0d7ac6ce045db5484e35ba7c05d01e9a86",
                "md5": "c22cb2ac24f74f277da7c937b69d7133",
                "sha256": "b9ecd63d872df5198114ae3f1aeffe2e78725c708f09eccc88eccdebe3e5fb5c"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c22cb2ac24f74f277da7c937b69d7133",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 318516,
            "upload_time": "2024-10-04T07:50:38",
            "upload_time_iso_8601": "2024-10-04T07:50:38.314097Z",
            "url": "https://files.pythonhosted.org/packages/ab/86/fe07a7212d8dae772da650ae7b0d7ac6ce045db5484e35ba7c05d01e9a86/qutip_qoc-0.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9b443c1800b3a7b2ed4a628212be603ecfa3a64bfc870ace7ac0f23368a581c",
                "md5": "5e1e5e063c3b0dff88b82619dcc07636",
                "sha256": "c23d2c2ce3a31de1336cb40fb07585f5bee6e221878a9f58679609c54cdbed99"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e1e5e063c3b0dff88b82619dcc07636",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 984816,
            "upload_time": "2024-10-04T07:50:39",
            "upload_time_iso_8601": "2024-10-04T07:50:39.819643Z",
            "url": "https://files.pythonhosted.org/packages/a9/b4/43c1800b3a7b2ed4a628212be603ecfa3a64bfc870ace7ac0f23368a581c/qutip_qoc-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b674fccf7e9046b43e2d86e94c33c4da90576ae8b312ec794df5d541dc8534d",
                "md5": "037d94d0dca72b7ad57cffdb0fc8b3ba",
                "sha256": "2194cd74d9e1f55756faae5288104c2cc1051ec6b02b7e8b1ff222fe4ace1832"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "037d94d0dca72b7ad57cffdb0fc8b3ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 923908,
            "upload_time": "2024-10-04T07:50:42",
            "upload_time_iso_8601": "2024-10-04T07:50:42.125912Z",
            "url": "https://files.pythonhosted.org/packages/7b/67/4fccf7e9046b43e2d86e94c33c4da90576ae8b312ec794df5d541dc8534d/qutip_qoc-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca2a83b6a7a1f90a6e0c7f3c65f1b4ae32cb62db374b46facffca8ef3418da87",
                "md5": "082c276ff7a9c2507ed1d9ef72ab753b",
                "sha256": "231859b25114510858eee71e2e7b4dee373faa610a7abb47d7e174d836d95f5a"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "082c276ff7a9c2507ed1d9ef72ab753b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 911774,
            "upload_time": "2024-10-04T07:50:43",
            "upload_time_iso_8601": "2024-10-04T07:50:43.603620Z",
            "url": "https://files.pythonhosted.org/packages/ca/2a/83b6a7a1f90a6e0c7f3c65f1b4ae32cb62db374b46facffca8ef3418da87/qutip_qoc-0.1.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b17da9f0ea848907f62b08149af65d00ab17890e72bdcf90e841afbb93c9ad4e",
                "md5": "4edab4fbf3569d9426dcbc6be1b63b8e",
                "sha256": "01cc1c8dfdf7a439789397fae4006d9be64bbdeb466804f2339f9168ff89ba81"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4edab4fbf3569d9426dcbc6be1b63b8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 951548,
            "upload_time": "2024-10-04T07:50:44",
            "upload_time_iso_8601": "2024-10-04T07:50:44.958703Z",
            "url": "https://files.pythonhosted.org/packages/b1/7d/a9f0ea848907f62b08149af65d00ab17890e72bdcf90e841afbb93c9ad4e/qutip_qoc-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbb5dbc59c5a256d99a09b8cd9f759614b61a9c1cb370bae68e2e0b2d7d16f56",
                "md5": "20b0a0a2fc1fa4463d699631adcb0958",
                "sha256": "9e430dc22a06668e806c6155ce8c269062a6efd13f9c398a3f4760e5db04ddc6"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "20b0a0a2fc1fa4463d699631adcb0958",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 296718,
            "upload_time": "2024-10-04T07:50:46",
            "upload_time_iso_8601": "2024-10-04T07:50:46.234560Z",
            "url": "https://files.pythonhosted.org/packages/bb/b5/dbc59c5a256d99a09b8cd9f759614b61a9c1cb370bae68e2e0b2d7d16f56/qutip_qoc-0.1.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c8dba321be1f897cce4968f33b1c9c4c50001aca7011b7677a03850632a5631",
                "md5": "b76971b2590ecfc7a6cf25a1bd2571eb",
                "sha256": "81bc8f6e2a7b494879e8ad5e0f2cf59ba99c512b81d9108a67606e1769486f3f"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b76971b2590ecfc7a6cf25a1bd2571eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 316904,
            "upload_time": "2024-10-04T07:50:47",
            "upload_time_iso_8601": "2024-10-04T07:50:47.497231Z",
            "url": "https://files.pythonhosted.org/packages/7c/8d/ba321be1f897cce4968f33b1c9c4c50001aca7011b7677a03850632a5631/qutip_qoc-0.1.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "560465dba6a9bc33e33d920c245f7bb9d27b591a9636d9fdde90fa4bc18dd08d",
                "md5": "d14d5d2a973918af270244aa0c88a44d",
                "sha256": "eb4ae7d97c2fd7fb4e2340db5bd6f9663da3afada720e878957471a8ef335043"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d14d5d2a973918af270244aa0c88a44d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 871601,
            "upload_time": "2024-10-04T07:50:49",
            "upload_time_iso_8601": "2024-10-04T07:50:49.546920Z",
            "url": "https://files.pythonhosted.org/packages/56/04/65dba6a9bc33e33d920c245f7bb9d27b591a9636d9fdde90fa4bc18dd08d/qutip_qoc-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f857773f540fbe2e3179bc5baae116fda5fe83c7923d6df9d05b6ff34d396d5",
                "md5": "828cc52971375699ba8f3061107f7420",
                "sha256": "54bb116350b7f55f61ac3065e4ee5be8c286a4886dc45a6aa14f8ba1d3389aac"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "828cc52971375699ba8f3061107f7420",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 821578,
            "upload_time": "2024-10-04T07:50:50",
            "upload_time_iso_8601": "2024-10-04T07:50:50.938217Z",
            "url": "https://files.pythonhosted.org/packages/8f/85/7773f540fbe2e3179bc5baae116fda5fe83c7923d6df9d05b6ff34d396d5/qutip_qoc-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d96544fd9b2d9864e9bab1c099c01351e112bb46046d8ed07e14cd207e46c595",
                "md5": "97608ca50bced13b56e5944f27b69421",
                "sha256": "9bd3d64128fb2d9078aba7b2fd33fb784e9a9522e0e68de345fd5a4a63fb871d"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "97608ca50bced13b56e5944f27b69421",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 806629,
            "upload_time": "2024-10-04T07:50:53",
            "upload_time_iso_8601": "2024-10-04T07:50:53.084329Z",
            "url": "https://files.pythonhosted.org/packages/d9/65/44fd9b2d9864e9bab1c099c01351e112bb46046d8ed07e14cd207e46c595/qutip_qoc-0.1.1-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ce93e69db056b879481a553e82dd2b307befb45228e5f3c26b968eaad9e7f05",
                "md5": "f0e1cc65a42af47699da02ea644f7359",
                "sha256": "5553afdab4f0a66b20e587a185e862508c5e07ab3adbe177824f89165d803c62"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0e1cc65a42af47699da02ea644f7359",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 845873,
            "upload_time": "2024-10-04T07:50:54",
            "upload_time_iso_8601": "2024-10-04T07:50:54.476685Z",
            "url": "https://files.pythonhosted.org/packages/6c/e9/3e69db056b879481a553e82dd2b307befb45228e5f3c26b968eaad9e7f05/qutip_qoc-0.1.1-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "502be86ce6824b12921d7f0f6aa1625f3a6e1ae7355b9a73d313558a21efd62a",
                "md5": "65d61cb55cad87b0635ee29161cfb88e",
                "sha256": "86f6727db2be954aab9553ac5b464f031a801e957e0dc485b5cb635173108054"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "65d61cb55cad87b0635ee29161cfb88e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 305797,
            "upload_time": "2024-10-04T07:50:55",
            "upload_time_iso_8601": "2024-10-04T07:50:55.991022Z",
            "url": "https://files.pythonhosted.org/packages/50/2b/e86ce6824b12921d7f0f6aa1625f3a6e1ae7355b9a73d313558a21efd62a/qutip_qoc-0.1.1-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6eacd474aa972f74820c38ba78e79492b0471d20af1d336cf0fa04c9c9d43064",
                "md5": "68fa6d04aa557d561665c19cc611419b",
                "sha256": "df8824bdee72d137aeb6055a48475c3cda97d6f8a245bd6efecd4cbae0df5578"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "68fa6d04aa557d561665c19cc611419b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 328877,
            "upload_time": "2024-10-04T07:50:57",
            "upload_time_iso_8601": "2024-10-04T07:50:57.317733Z",
            "url": "https://files.pythonhosted.org/packages/6e/ac/d474aa972f74820c38ba78e79492b0471d20af1d336cf0fa04c9c9d43064/qutip_qoc-0.1.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55a8b95e3f0b95f28ce99bcaac3b01d4a3f4d71e949ec84d4ef60a508d04c1d0",
                "md5": "ab8192f512c80c9722323cc9be959e25",
                "sha256": "a947692af21b7362257a90683d0fb37e7d482d60b4a5ac6ce27e5aad076af1b8"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ab8192f512c80c9722323cc9be959e25",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 881571,
            "upload_time": "2024-10-04T07:50:58",
            "upload_time_iso_8601": "2024-10-04T07:50:58.685588Z",
            "url": "https://files.pythonhosted.org/packages/55/a8/b95e3f0b95f28ce99bcaac3b01d4a3f4d71e949ec84d4ef60a508d04c1d0/qutip_qoc-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2692ab91a2012abe50543b6aa11933fa411221cac06c6f83954981b2b3c634e",
                "md5": "0e035de1a0b56a89044a2d1dd54847fe",
                "sha256": "562a93446e6affc68733b630b97ba1f341e2db0e881c3a9b7d461c27cc3c4058"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0e035de1a0b56a89044a2d1dd54847fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 828034,
            "upload_time": "2024-10-04T07:51:00",
            "upload_time_iso_8601": "2024-10-04T07:51:00.406905Z",
            "url": "https://files.pythonhosted.org/packages/c2/69/2ab91a2012abe50543b6aa11933fa411221cac06c6f83954981b2b3c634e/qutip_qoc-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72e15c8416ca90fdf10c5a38919a9152f3a839710c1948a9fc59c233df6cdebb",
                "md5": "b64e350e060751453403433ab4edea05",
                "sha256": "475a357a6de58388e33df51419aceab56b3ef20198e450ef09e888a244f94468"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b64e350e060751453403433ab4edea05",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 815980,
            "upload_time": "2024-10-04T07:51:02",
            "upload_time_iso_8601": "2024-10-04T07:51:02.507213Z",
            "url": "https://files.pythonhosted.org/packages/72/e1/5c8416ca90fdf10c5a38919a9152f3a839710c1948a9fc59c233df6cdebb/qutip_qoc-0.1.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c145d6fc1367339f60d328114f19bfb8fbc261e37f42bfdf30ca196347b64794",
                "md5": "52bb1985ca32383f61626b236d87f1c9",
                "sha256": "f49f1f8bde5a76c63caebc034ddffe0a91e037761095f2f5fa60e24e85caca3a"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52bb1985ca32383f61626b236d87f1c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 847765,
            "upload_time": "2024-10-04T07:51:03",
            "upload_time_iso_8601": "2024-10-04T07:51:03.979323Z",
            "url": "https://files.pythonhosted.org/packages/c1/45/d6fc1367339f60d328114f19bfb8fbc261e37f42bfdf30ca196347b64794/qutip_qoc-0.1.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17881d535f033cf8de1347e624d4cf655948e01af869e9a739504495f341cfd6",
                "md5": "b0656eaa006b66583d8bf97b21883e5e",
                "sha256": "c7b522659b75db5a02ce27de2f3dbbc23d1dc3c1678e0fff62f59d3cea8163fd"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "b0656eaa006b66583d8bf97b21883e5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 298286,
            "upload_time": "2024-10-04T07:51:06",
            "upload_time_iso_8601": "2024-10-04T07:51:06.437101Z",
            "url": "https://files.pythonhosted.org/packages/17/88/1d535f033cf8de1347e624d4cf655948e01af869e9a739504495f341cfd6/qutip_qoc-0.1.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06a7241c15b5137319f6230b40b5d9f34732b81cb5cfefed1589f610c8b89c37",
                "md5": "ba0868b0a9259f49cb71f716a3e77e4d",
                "sha256": "c421ddf70d8b7ba90addf07c1bf5ae6398e8994afaea5135abd643a4f947e0d1"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ba0868b0a9259f49cb71f716a3e77e4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 316015,
            "upload_time": "2024-10-04T07:51:07",
            "upload_time_iso_8601": "2024-10-04T07:51:07.726411Z",
            "url": "https://files.pythonhosted.org/packages/06/a7/241c15b5137319f6230b40b5d9f34732b81cb5cfefed1589f610c8b89c37/qutip_qoc-0.1.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "382d9720c3347099fd312aa5eb5aa65bee0bbdadf7efe3f9bf21cca570497f4e",
                "md5": "ce319e1110cc285b633f34e32b02af9a",
                "sha256": "ae3cf444cd2452fcd0ff6bcd2f8c911152dfb6ecf1618e3bcf4efbe1b2029fbd"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ce319e1110cc285b633f34e32b02af9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 318188,
            "upload_time": "2024-10-04T07:51:09",
            "upload_time_iso_8601": "2024-10-04T07:51:09.006381Z",
            "url": "https://files.pythonhosted.org/packages/38/2d/9720c3347099fd312aa5eb5aa65bee0bbdadf7efe3f9bf21cca570497f4e/qutip_qoc-0.1.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc0f5498b7b3d775574665a2d4bc7e3dd9a36e1f603d416ec6191554af250e52",
                "md5": "8c11a8a42749f149e4c64b046a410e25",
                "sha256": "472071db4256f82dab4d2eb2e537dae0ca0753c0788954836ca4e4b57dc60326"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c11a8a42749f149e4c64b046a410e25",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 955193,
            "upload_time": "2024-10-04T07:51:10",
            "upload_time_iso_8601": "2024-10-04T07:51:10.314748Z",
            "url": "https://files.pythonhosted.org/packages/dc/0f/5498b7b3d775574665a2d4bc7e3dd9a36e1f603d416ec6191554af250e52/qutip_qoc-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7764e9de39056697ccd2c36ede039f62a3c2895ee6bcbad978e4a735cfc4c5bf",
                "md5": "754e01ca8853690496c8195abfebf269",
                "sha256": "30dbf928e3ada6c5b38e299c2ab4cdbd87548133ba0faaf73f04774644332dad"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "754e01ca8853690496c8195abfebf269",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 902538,
            "upload_time": "2024-10-04T07:51:12",
            "upload_time_iso_8601": "2024-10-04T07:51:12.377373Z",
            "url": "https://files.pythonhosted.org/packages/77/64/e9de39056697ccd2c36ede039f62a3c2895ee6bcbad978e4a735cfc4c5bf/qutip_qoc-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88bb0deb9a11aa180c4d650c3eeb343b2c002e057036ef704f45f48a0c4047e4",
                "md5": "571822e1307c5f5da45e8ef4c86db478",
                "sha256": "3a9c46ca26793cb342673fb1e37389674168c7ccf181be1d8723cb598e7ca020"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "571822e1307c5f5da45e8ef4c86db478",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 899076,
            "upload_time": "2024-10-04T07:51:14",
            "upload_time_iso_8601": "2024-10-04T07:51:14.245154Z",
            "url": "https://files.pythonhosted.org/packages/88/bb/0deb9a11aa180c4d650c3eeb343b2c002e057036ef704f45f48a0c4047e4/qutip_qoc-0.1.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83c541c422e2c812c0f0003eebe07025de6506423a34cf550b80ad1733454827",
                "md5": "fd900899c0b6a4b95acee3273e2f6cb8",
                "sha256": "d8bb4cbe7a73c0c5f024694103cba6e8b5c01892ed3b01ea5336edcc05027cd7"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd900899c0b6a4b95acee3273e2f6cb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 923240,
            "upload_time": "2024-10-04T07:51:15",
            "upload_time_iso_8601": "2024-10-04T07:51:15.885881Z",
            "url": "https://files.pythonhosted.org/packages/83/c5/41c422e2c812c0f0003eebe07025de6506423a34cf550b80ad1733454827/qutip_qoc-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3833b2cb2840994768addde0f317be203858a1a00bc116d255a86d1ea62054b",
                "md5": "f85ca523253914e2babb062ad7e66d47",
                "sha256": "2a826d13f7c42a71324018b4f14e4bac70a2a5a0918ef47b3f8c864fa0b17517"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "f85ca523253914e2babb062ad7e66d47",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 299117,
            "upload_time": "2024-10-04T07:51:17",
            "upload_time_iso_8601": "2024-10-04T07:51:17.673985Z",
            "url": "https://files.pythonhosted.org/packages/e3/83/3b2cb2840994768addde0f317be203858a1a00bc116d255a86d1ea62054b/qutip_qoc-0.1.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3ccfc75c6065c350059ac105af12b4b690cf901bd009bdeec41899105f7d562",
                "md5": "68df49c3473491ea17e572c6b4e3d398",
                "sha256": "2252e03d9ad14f57a7179c2c0a27bffc70304b1005b3b0806a01224bab7b1110"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "68df49c3473491ea17e572c6b4e3d398",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 318162,
            "upload_time": "2024-10-04T07:51:19",
            "upload_time_iso_8601": "2024-10-04T07:51:19.458095Z",
            "url": "https://files.pythonhosted.org/packages/f3/cc/fc75c6065c350059ac105af12b4b690cf901bd009bdeec41899105f7d562/qutip_qoc-0.1.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "361811579ae3ea60122c60c54693e3430be876de64cd9830c91d32f01fb4e520",
                "md5": "3f7e78bccddff6dc9e1496b6a5e8f4e8",
                "sha256": "f8a58320f44cc715df49de0c69c73ee9b4240546a7eb75233a7b60547316b880"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3f7e78bccddff6dc9e1496b6a5e8f4e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 319039,
            "upload_time": "2024-10-04T07:51:20",
            "upload_time_iso_8601": "2024-10-04T07:51:20.790672Z",
            "url": "https://files.pythonhosted.org/packages/36/18/11579ae3ea60122c60c54693e3430be876de64cd9830c91d32f01fb4e520/qutip_qoc-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "902ad8ad6de6aa03df3841c02fff8c31da27b0dc5d99a450f5aef7c6db1d720f",
                "md5": "9567e73f9bb77cf7176699677f001ab8",
                "sha256": "c35fdf8a247f94a35990f085da19932bb6a9db808f3c820b0187273b79718865"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9567e73f9bb77cf7176699677f001ab8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 938693,
            "upload_time": "2024-10-04T07:51:22",
            "upload_time_iso_8601": "2024-10-04T07:51:22.155650Z",
            "url": "https://files.pythonhosted.org/packages/90/2a/d8ad6de6aa03df3841c02fff8c31da27b0dc5d99a450f5aef7c6db1d720f/qutip_qoc-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93d058be15efc9ad78bb87e2b2eb52b944cfe86a6a36b387b32dacee9e4ef127",
                "md5": "2906434a23bcc72494581f2eebc9e0ce",
                "sha256": "d8ab99ef1c776fe8029034bd6e9473121b11524869ef8fa814dc87c69bd21ffa"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2906434a23bcc72494581f2eebc9e0ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 891758,
            "upload_time": "2024-10-04T07:51:23",
            "upload_time_iso_8601": "2024-10-04T07:51:23.656516Z",
            "url": "https://files.pythonhosted.org/packages/93/d0/58be15efc9ad78bb87e2b2eb52b944cfe86a6a36b387b32dacee9e4ef127/qutip_qoc-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28d7a5d8357e496eeafff11be3c08e9e3ec5621c3da970981959f62abe35e0a4",
                "md5": "4512db7fe1f7691837807b77018a3117",
                "sha256": "e84ed842e7a8df3d3c038d2ac8a4f19f9a17068ac2dcde81eb914bd4a0afe77d"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4512db7fe1f7691837807b77018a3117",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 882755,
            "upload_time": "2024-10-04T07:51:25",
            "upload_time_iso_8601": "2024-10-04T07:51:25.223797Z",
            "url": "https://files.pythonhosted.org/packages/28/d7/a5d8357e496eeafff11be3c08e9e3ec5621c3da970981959f62abe35e0a4/qutip_qoc-0.1.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0f56647e694f4760d82e65d371aa28e5ade2cfeeaace9ffad22045b97ae9b20",
                "md5": "f61760c04ddd0f64ffffb3f8b2d73416",
                "sha256": "89932e3735fcd73bb7d76eb81a4228a7dd2bf04b2ef144f1055015b3be29bb93"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f61760c04ddd0f64ffffb3f8b2d73416",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 905541,
            "upload_time": "2024-10-04T07:51:26",
            "upload_time_iso_8601": "2024-10-04T07:51:26.675026Z",
            "url": "https://files.pythonhosted.org/packages/c0/f5/6647e694f4760d82e65d371aa28e5ade2cfeeaace9ffad22045b97ae9b20/qutip_qoc-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "337f10e6cb3d1bf7ca4176e20ad6871617a734b9fcdca2debfee086de6df3805",
                "md5": "45b601403ec4895a7dc8d8a4d7e032ae",
                "sha256": "30da75d22f3e0aa620376cea7f2d22fdb6e87e8bc4d7dc4dcf41703206b73dcd"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "45b601403ec4895a7dc8d8a4d7e032ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 299077,
            "upload_time": "2024-10-04T07:51:28",
            "upload_time_iso_8601": "2024-10-04T07:51:28.525905Z",
            "url": "https://files.pythonhosted.org/packages/33/7f/10e6cb3d1bf7ca4176e20ad6871617a734b9fcdca2debfee086de6df3805/qutip_qoc-0.1.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d7adab265c4478f9a9be32cccc56af4c02cae4a5c930cfd43023ecbf7c52bf4",
                "md5": "e881146d2cd64045bc143f3f70e8d3e4",
                "sha256": "2895ee2d47c8c3bb4c0189142d0a9b51e6eb0767165290ad6974dc0bd6934fa6"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e881146d2cd64045bc143f3f70e8d3e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 318016,
            "upload_time": "2024-10-04T07:51:29",
            "upload_time_iso_8601": "2024-10-04T07:51:29.890751Z",
            "url": "https://files.pythonhosted.org/packages/4d/7a/dab265c4478f9a9be32cccc56af4c02cae4a5c930cfd43023ecbf7c52bf4/qutip_qoc-0.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa3512b0b6832536774bcd79f480e4db238fb44ec2749bd12a44eb80169aad4d",
                "md5": "753e1e4c294ef82683e61b602684bd8b",
                "sha256": "3365ab1b48079f104ee642c6898e6340acc2a6a67308da6f8f157893ed46847e"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "753e1e4c294ef82683e61b602684bd8b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 304159,
            "upload_time": "2024-10-04T07:51:31",
            "upload_time_iso_8601": "2024-10-04T07:51:31.342728Z",
            "url": "https://files.pythonhosted.org/packages/aa/35/12b0b6832536774bcd79f480e4db238fb44ec2749bd12a44eb80169aad4d/qutip_qoc-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a65ead9f205dd9f4d42af97483de37d979cd9d3076b229f1e6af4a21eb6e8265",
                "md5": "b0590b8e2b23b756e3bfad639b0d23a9",
                "sha256": "e3ece75e2007228a6ab6e7ba1243b4cb5178cd8d7e6a562ecc2661755aa316ca"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0590b8e2b23b756e3bfad639b0d23a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 335934,
            "upload_time": "2024-10-04T07:51:32",
            "upload_time_iso_8601": "2024-10-04T07:51:32.668272Z",
            "url": "https://files.pythonhosted.org/packages/a6/5e/ad9f205dd9f4d42af97483de37d979cd9d3076b229f1e6af4a21eb6e8265/qutip_qoc-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c40864cc1975e1af3aee04315122d523a9aa83afc59c7f551e39e4f97a311e53",
                "md5": "4c5d0f4cb1ed394f94030dc71832eac8",
                "sha256": "225ee124952995c82e440414abf3605352943f691dc40001725037f37d4ada78"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4c5d0f4cb1ed394f94030dc71832eac8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 332948,
            "upload_time": "2024-10-04T07:51:33",
            "upload_time_iso_8601": "2024-10-04T07:51:33.966158Z",
            "url": "https://files.pythonhosted.org/packages/c4/08/64cc1975e1af3aee04315122d523a9aa83afc59c7f551e39e4f97a311e53/qutip_qoc-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab9627fa940c65e9ad683fabe6740f281a7048d8b9cf8c2b6ed64a4931d7e025",
                "md5": "661775d33acdeb8f16bbe76dcd74241e",
                "sha256": "f88d6519d792bddb768c3345aae2c0568950baa3d0993e6c1cae4438d6de5c71"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "661775d33acdeb8f16bbe76dcd74241e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 313935,
            "upload_time": "2024-10-04T07:51:35",
            "upload_time_iso_8601": "2024-10-04T07:51:35.527657Z",
            "url": "https://files.pythonhosted.org/packages/ab/96/27fa940c65e9ad683fabe6740f281a7048d8b9cf8c2b6ed64a4931d7e025/qutip_qoc-0.1.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0949963552e6ba5132235d715c7cd4e0b4129b668a23303bb4d67e0d8382c385",
                "md5": "8c52b9fa8830cc16b67ca512d50c036b",
                "sha256": "15f972b5d857103a64d96871b37ef8b96215c82da0bd973b2ce727e5f8c38130"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c52b9fa8830cc16b67ca512d50c036b",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 342817,
            "upload_time": "2024-10-04T07:51:36",
            "upload_time_iso_8601": "2024-10-04T07:51:36.801699Z",
            "url": "https://files.pythonhosted.org/packages/09/49/963552e6ba5132235d715c7cd4e0b4129b668a23303bb4d67e0d8382c385/qutip_qoc-0.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfda27ad973c95acea4dcf9257f78bca37a2d680b0b305ea5356d17bcaf19168",
                "md5": "679a3ba2ba8a31fca08a34710a60fd61",
                "sha256": "b693e416d9baa9d689d941d22797c786a1c7bc2a705080870c3d2cb7d17dfa54"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "679a3ba2ba8a31fca08a34710a60fd61",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 327789,
            "upload_time": "2024-10-04T07:51:38",
            "upload_time_iso_8601": "2024-10-04T07:51:38.781815Z",
            "url": "https://files.pythonhosted.org/packages/df/da/27ad973c95acea4dcf9257f78bca37a2d680b0b305ea5356d17bcaf19168/qutip_qoc-0.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e0bccfe062006cd1b67a75d4d44c9faf77a72e0a4c98b4adf3eed6560734fd7",
                "md5": "90e580d21cf9c4c560e4bd24d445305a",
                "sha256": "8fe86e042b564bdcaca530d3ff95b732887c346973af103138ace6a1d4ebddb4"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "90e580d21cf9c4c560e4bd24d445305a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 313247,
            "upload_time": "2024-10-04T07:51:41",
            "upload_time_iso_8601": "2024-10-04T07:51:41.210946Z",
            "url": "https://files.pythonhosted.org/packages/8e/0b/ccfe062006cd1b67a75d4d44c9faf77a72e0a4c98b4adf3eed6560734fd7/qutip_qoc-0.1.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61461d2345042fde6d3364b7163247a44e0e5df78a0383c9dedc9209ad278244",
                "md5": "5b0a08e808112cfb5164c05261fa813f",
                "sha256": "20ad536115b49d07f28786ff2cc1c33e6e9369a0df6ac9704171191125c437c6"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b0a08e808112cfb5164c05261fa813f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 303889,
            "upload_time": "2024-10-04T07:51:42",
            "upload_time_iso_8601": "2024-10-04T07:51:42.546538Z",
            "url": "https://files.pythonhosted.org/packages/61/46/1d2345042fde6d3364b7163247a44e0e5df78a0383c9dedc9209ad278244/qutip_qoc-0.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "301c1dba47cb67eb5a027721c764a82721ad3088e4e26991ba2e85f5b037babd",
                "md5": "170a14f43ed5b8c66e128eeb98efff9a",
                "sha256": "78840128cdba4bd53285d91948f1d744bfc6c884407711af1830cb58b0b75bb4"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "170a14f43ed5b8c66e128eeb98efff9a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 342938,
            "upload_time": "2024-10-04T07:51:43",
            "upload_time_iso_8601": "2024-10-04T07:51:43.870551Z",
            "url": "https://files.pythonhosted.org/packages/30/1c/1dba47cb67eb5a027721c764a82721ad3088e4e26991ba2e85f5b037babd/qutip_qoc-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c21cbd81b144d29c57b756c1ffa7c78ceb0de681267df45afff19d7c277ab159",
                "md5": "db69607c0948723513f7a545206267e7",
                "sha256": "f0564877d17a6312a9650a0c351b2631cc8da389af361da67e6a0558d874471d"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "db69607c0948723513f7a545206267e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 327787,
            "upload_time": "2024-10-04T07:51:45",
            "upload_time_iso_8601": "2024-10-04T07:51:45.290019Z",
            "url": "https://files.pythonhosted.org/packages/c2/1c/bd81b144d29c57b756c1ffa7c78ceb0de681267df45afff19d7c277ab159/qutip_qoc-0.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d1355e3dfcc1eb15dfcfe70021539cdbdec6a5fbe089446e4a86ac93d41e218",
                "md5": "918f39822acfc03feb70efee2160541a",
                "sha256": "0952e5a11574fcb0d0b5ced76ce351496e06d0a88cbd726c5b4f337bc0ca61e3"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "918f39822acfc03feb70efee2160541a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 313264,
            "upload_time": "2024-10-04T07:51:46",
            "upload_time_iso_8601": "2024-10-04T07:51:46.723668Z",
            "url": "https://files.pythonhosted.org/packages/7d/13/55e3dfcc1eb15dfcfe70021539cdbdec6a5fbe089446e4a86ac93d41e218/qutip_qoc-0.1.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c52530b487b6b00ea5feb68c68da4cea9d8fdf9c67123a051b567589f3fd0e20",
                "md5": "d4952a594844e57962e7dc8bf6fb3d9b",
                "sha256": "fe41f963a347f6d23cc7f0bc3e0534d294fa8ef06c59ea4bdc7b408a85f43056"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d4952a594844e57962e7dc8bf6fb3d9b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 304018,
            "upload_time": "2024-10-04T07:51:48",
            "upload_time_iso_8601": "2024-10-04T07:51:48.466609Z",
            "url": "https://files.pythonhosted.org/packages/c5/25/30b487b6b00ea5feb68c68da4cea9d8fdf9c67123a051b567589f3fd0e20/qutip_qoc-0.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6039c1ced1103c68abf3754f5a6d5710e14e6021568dae5880f0c24de0fa2ca1",
                "md5": "22b595aa594cb6f0c0ef18133d215670",
                "sha256": "95f4e0113b79fecd1ac5e6adad2c102e00907c21911257c643e0d5bf35bc8691"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22b595aa594cb6f0c0ef18133d215670",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 335842,
            "upload_time": "2024-10-04T07:51:50",
            "upload_time_iso_8601": "2024-10-04T07:51:50.204732Z",
            "url": "https://files.pythonhosted.org/packages/60/39/c1ced1103c68abf3754f5a6d5710e14e6021568dae5880f0c24de0fa2ca1/qutip_qoc-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23731b32bdf8e946b941f3b5af1a5e6a3fa87fcaecfa0763f1ab9fc7ca6ea76b",
                "md5": "510da2c2046a7b42a6a30caf00e0c80c",
                "sha256": "d5330542bb44a1c06b2c1b24a2a5e5c860df95367d300e20928a94e32874a8b5"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "510da2c2046a7b42a6a30caf00e0c80c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 332440,
            "upload_time": "2024-10-04T07:51:51",
            "upload_time_iso_8601": "2024-10-04T07:51:51.434706Z",
            "url": "https://files.pythonhosted.org/packages/23/73/1b32bdf8e946b941f3b5af1a5e6a3fa87fcaecfa0763f1ab9fc7ca6ea76b/qutip_qoc-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec87411bb1c2eb7b54d38c1b0b2e941067a2a2ccb7ea2e0343781eda2fc25dac",
                "md5": "eacc1306df5168d5d32d886fc5074025",
                "sha256": "6740d76d46cee35cc7013f175b073587d8a399bbbd7671708884c23a4218f2cd"
            },
            "downloads": -1,
            "filename": "qutip_qoc-0.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eacc1306df5168d5d32d886fc5074025",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 313804,
            "upload_time": "2024-10-04T07:51:52",
            "upload_time_iso_8601": "2024-10-04T07:51:52.871077Z",
            "url": "https://files.pythonhosted.org/packages/ec/87/411bb1c2eb7b54d38c1b0b2e941067a2a2ccb7ea2e0343781eda2fc25dac/qutip_qoc-0.1.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-04 07:50:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "qutip",
    "github_project": "qutip-qoc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "qutip-qoc"
}
        
Elapsed time: 4.50877s