dimod


Namedimod JSON
Version 0.12.14 PyPI version JSON
download
home_pagehttps://github.com/dwavesystems/dimod
SummaryA shared API for binary quadratic model samplers.
upload_time2023-12-22 16:15:28
maintainer
docs_urlNone
authorD-Wave Systems Inc.
requires_python>=3.8
licenseApache 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://img.shields.io/pypi/v/dimod.svg
    :target: https://pypi.org/project/dimod

.. image:: https://img.shields.io/pypi/pyversions/dimod.svg
    :target: https://pypi.python.org/pypi/dimod

.. image:: https://circleci.com/gh/dwavesystems/dimod.svg?style=svg
    :target: https://circleci.com/gh/dwavesystems/dimod

.. image:: https://codecov.io/gh/dwavesystems/dimod/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/dwavesystems/dimod

dimod
=====

.. index-start-marker1

`dimod` is a shared API for samplers. It provides:

* classes for quadratic models---such as the binary quadratic model (BQM) class that
  contains Ising and QUBO models used by samplers such as the D-Wave system---and
  higher-order (non-quadratic) models.
* reference examples of samplers and composed samplers.
* `abstract base classes <https://docs.python.org/3/library/abc.html>`_ for
  constructing new samplers and composed samplers.

.. index-end-marker1

(For explanations of the terminology, see the
`Ocean glossary <https://docs.ocean.dwavesys.com/en/stable/concepts/index.html>`_.)

Example Usage
-------------

.. index-start-marker2

>>> import dimod
...
>>> # Construct a problem
>>> bqm = dimod.BinaryQuadraticModel({0: -1, 1: 1}, {(0, 1): 2}, 0.0, dimod.BINARY)
...
>>> # Use dimod's brute force solver to solve the problem
>>> sampleset = dimod.ExactSolver().sample(bqm)
>>> print(sampleset)
   0  1 energy num_oc.
1  1  0   -1.0       1
0  0  0    0.0       1
3  0  1    1.0       1
2  1  1    2.0       1
['BINARY', 4 rows, 4 samples, 2 variables]

.. index-end-marker2

See the `documentation <https://docs.ocean.dwavesys.com/en/stable/docs_dimod/>`_
for more examples.

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

.. installation-start-marker

Installation from `PyPI <https://pypi.org/project/dimod>`_:

.. code-block:: bash

    pip install dimod

.. installation-end-marker

License
-------

Released under the Apache License 2.0. See LICENSE file.

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

Ocean's `contributing guide <https://docs.ocean.dwavesys.com/en/stable/contributing.html>`_
has guidelines for contributing to Ocean packages.

dimod includes some formatting customization in the
`.clang-format <.clang-format>`_ and `setup.cfg <setup.cfg>`_ files.

Release Notes
~~~~~~~~~~~~~

dimod makes use of `reno <https://docs.openstack.org/reno/>`_ to manage its
release notes.

When making a contribution to dimod that will affect users, create a new
release note file by running

.. code-block:: bash

    reno new your-short-descriptor-here

You can then edit the file created under ``releasenotes/notes/``.
Remove any sections not relevant to your changes.
Commit the file along with your changes.

See reno's `user guide <https://docs.openstack.org/reno/latest/user/usage.html>`_
for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/dwavesystems/dimod",
    "name": "dimod",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "D-Wave Systems Inc.",
    "author_email": "tools@dwavesys.com",
    "download_url": "https://files.pythonhosted.org/packages/25/52/1518dafd955f13b42966677b8503f3abba2d5ad6e91fcf6923dabe87aefd/dimod-0.12.14.tar.gz",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/v/dimod.svg\n    :target: https://pypi.org/project/dimod\n\n.. image:: https://img.shields.io/pypi/pyversions/dimod.svg\n    :target: https://pypi.python.org/pypi/dimod\n\n.. image:: https://circleci.com/gh/dwavesystems/dimod.svg?style=svg\n    :target: https://circleci.com/gh/dwavesystems/dimod\n\n.. image:: https://codecov.io/gh/dwavesystems/dimod/branch/main/graph/badge.svg\n    :target: https://codecov.io/gh/dwavesystems/dimod\n\ndimod\n=====\n\n.. index-start-marker1\n\n`dimod` is a shared API for samplers. It provides:\n\n* classes for quadratic models---such as the binary quadratic model (BQM) class that\n  contains Ising and QUBO models used by samplers such as the D-Wave system---and\n  higher-order (non-quadratic) models.\n* reference examples of samplers and composed samplers.\n* `abstract base classes <https://docs.python.org/3/library/abc.html>`_ for\n  constructing new samplers and composed samplers.\n\n.. index-end-marker1\n\n(For explanations of the terminology, see the\n`Ocean glossary <https://docs.ocean.dwavesys.com/en/stable/concepts/index.html>`_.)\n\nExample Usage\n-------------\n\n.. index-start-marker2\n\n>>> import dimod\n...\n>>> # Construct a problem\n>>> bqm = dimod.BinaryQuadraticModel({0: -1, 1: 1}, {(0, 1): 2}, 0.0, dimod.BINARY)\n...\n>>> # Use dimod's brute force solver to solve the problem\n>>> sampleset = dimod.ExactSolver().sample(bqm)\n>>> print(sampleset)\n   0  1 energy num_oc.\n1  1  0   -1.0       1\n0  0  0    0.0       1\n3  0  1    1.0       1\n2  1  1    2.0       1\n['BINARY', 4 rows, 4 samples, 2 variables]\n\n.. index-end-marker2\n\nSee the `documentation <https://docs.ocean.dwavesys.com/en/stable/docs_dimod/>`_\nfor more examples.\n\nInstallation\n------------\n\n.. installation-start-marker\n\nInstallation from `PyPI <https://pypi.org/project/dimod>`_:\n\n.. code-block:: bash\n\n    pip install dimod\n\n.. installation-end-marker\n\nLicense\n-------\n\nReleased under the Apache License 2.0. See LICENSE file.\n\nContributing\n------------\n\nOcean's `contributing guide <https://docs.ocean.dwavesys.com/en/stable/contributing.html>`_\nhas guidelines for contributing to Ocean packages.\n\ndimod includes some formatting customization in the\n`.clang-format <.clang-format>`_ and `setup.cfg <setup.cfg>`_ files.\n\nRelease Notes\n~~~~~~~~~~~~~\n\ndimod makes use of `reno <https://docs.openstack.org/reno/>`_ to manage its\nrelease notes.\n\nWhen making a contribution to dimod that will affect users, create a new\nrelease note file by running\n\n.. code-block:: bash\n\n    reno new your-short-descriptor-here\n\nYou can then edit the file created under ``releasenotes/notes/``.\nRemove any sections not relevant to your changes.\nCommit the file along with your changes.\n\nSee reno's `user guide <https://docs.openstack.org/reno/latest/user/usage.html>`_\nfor details.\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "A shared API for binary quadratic model samplers.",
    "version": "0.12.14",
    "project_urls": {
        "Download": "https://github.com/dwavesystems/dimod/releases",
        "Homepage": "https://github.com/dwavesystems/dimod"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c208eb7ff93eaef44ea55d265c844ac2257bb574950046433b4f7b4632abe1e",
                "md5": "7e3222c6738b18e659833e6a93f4ab44",
                "sha256": "46c8131a33baf9de087e8c5717b5eb2a43b99cd8225ec7e739d91945afa0535d"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e3222c6738b18e659833e6a93f4ab44",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5368636,
            "upload_time": "2023-12-22T16:14:19",
            "upload_time_iso_8601": "2023-12-22T16:14:19.742055Z",
            "url": "https://files.pythonhosted.org/packages/0c/20/8eb7ff93eaef44ea55d265c844ac2257bb574950046433b4f7b4632abe1e/dimod-0.12.14-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae7880edc5d6be195ddd6b0232d14f0fcf45e00d382a1d5504a63803a1161f83",
                "md5": "b5bda8721c0bfe129d10abbfde1e3b65",
                "sha256": "2b89347d208df5cb260e42d73979941d710e52dc7d9092365cdd577f0d539283"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b5bda8721c0bfe129d10abbfde1e3b65",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5119631,
            "upload_time": "2023-12-22T16:14:23",
            "upload_time_iso_8601": "2023-12-22T16:14:23.309078Z",
            "url": "https://files.pythonhosted.org/packages/ae/78/80edc5d6be195ddd6b0232d14f0fcf45e00d382a1d5504a63803a1161f83/dimod-0.12.14-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc4b14e02be8ac2c63f599a53e2ce36d52ff8dcfdd4dfcc6269464c1e624c5c1",
                "md5": "1d590f36d1431796aef578f3cb6966c4",
                "sha256": "976e7e80c32266055f5ecb3392ceb0646972227707c90b1648524ea8e02b8dad"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1d590f36d1431796aef578f3cb6966c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 18575371,
            "upload_time": "2023-12-22T16:14:26",
            "upload_time_iso_8601": "2023-12-22T16:14:26.348545Z",
            "url": "https://files.pythonhosted.org/packages/bc/4b/14e02be8ac2c63f599a53e2ce36d52ff8dcfdd4dfcc6269464c1e624c5c1/dimod-0.12.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f208da0c9cd904fe8cb075e353bf77b2da8f7abc095f557395ecb480713a58b0",
                "md5": "d3fde89c33a5455b38eb043ed8f07d47",
                "sha256": "f5f0d9e54eca1540c642b3cfd4cb4fd7e2b3b99f16badf8061d0397568114445"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3fde89c33a5455b38eb043ed8f07d47",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 18743420,
            "upload_time": "2023-12-22T16:14:29",
            "upload_time_iso_8601": "2023-12-22T16:14:29.286780Z",
            "url": "https://files.pythonhosted.org/packages/f2/08/da0c9cd904fe8cb075e353bf77b2da8f7abc095f557395ecb480713a58b0/dimod-0.12.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "380d61ba703ed5f1c1c16c2c43a3afc17827794afcdc8fb6be9509ca01520b0c",
                "md5": "98a07d3dbfef25dcbd28fca2f590fd30",
                "sha256": "223f19577753036e85838b9ba9a5e7ac7d029c5ba7e97e060d0b3d6bd57acece"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98a07d3dbfef25dcbd28fca2f590fd30",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5083213,
            "upload_time": "2023-12-22T16:14:32",
            "upload_time_iso_8601": "2023-12-22T16:14:32.049764Z",
            "url": "https://files.pythonhosted.org/packages/38/0d/61ba703ed5f1c1c16c2c43a3afc17827794afcdc8fb6be9509ca01520b0c/dimod-0.12.14-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f4f2b3a917faf9b67c4eb655e6ead4ccc86717f2cc6c9e8f161d3a77896d078",
                "md5": "afebf47b0a60bcce36c132ff58f984a0",
                "sha256": "dae012d68aaa9ac50fb2a03ef3a206bf14394dc304c6ac4f929323376f2fdb0e"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afebf47b0a60bcce36c132ff58f984a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5374449,
            "upload_time": "2023-12-22T16:14:34",
            "upload_time_iso_8601": "2023-12-22T16:14:34.448075Z",
            "url": "https://files.pythonhosted.org/packages/5f/4f/2b3a917faf9b67c4eb655e6ead4ccc86717f2cc6c9e8f161d3a77896d078/dimod-0.12.14-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7236728e3592ad614362ceb525fc86a8144498e09145d4da45c5b7c03d52e61d",
                "md5": "1084efd40b811b15fbac19503fad6cdf",
                "sha256": "2d67f1564b425dddc8f1219c4c677d574bab20cc4bbcad7a109b554412269e66"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1084efd40b811b15fbac19503fad6cdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5122750,
            "upload_time": "2023-12-22T16:14:36",
            "upload_time_iso_8601": "2023-12-22T16:14:36.712314Z",
            "url": "https://files.pythonhosted.org/packages/72/36/728e3592ad614362ceb525fc86a8144498e09145d4da45c5b7c03d52e61d/dimod-0.12.14-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b71204bf21d38baeb9aaa13fcb401d14031b2660af290250af6458ffb2fc1901",
                "md5": "b235093017216a92e8b07573ac7ec631",
                "sha256": "f43e627a238ea3496ce72cf744d1dc75131c2e8d642d8842d0fab88c860fdf55"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b235093017216a92e8b07573ac7ec631",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 19336934,
            "upload_time": "2023-12-22T16:14:39",
            "upload_time_iso_8601": "2023-12-22T16:14:39.760112Z",
            "url": "https://files.pythonhosted.org/packages/b7/12/04bf21d38baeb9aaa13fcb401d14031b2660af290250af6458ffb2fc1901/dimod-0.12.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cddee612ac848a514860a239381ace99b32c6e340b0d7336bf5904f379a7391",
                "md5": "72267af09f5ed983a3de428b2d7f1b7a",
                "sha256": "d786f07b1ef5ac88130500a3acacbdf3a7f10bc0b26d3278fcd89b4dee5a8ed1"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72267af09f5ed983a3de428b2d7f1b7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 19492449,
            "upload_time": "2023-12-22T16:14:43",
            "upload_time_iso_8601": "2023-12-22T16:14:43.514556Z",
            "url": "https://files.pythonhosted.org/packages/8c/dd/ee612ac848a514860a239381ace99b32c6e340b0d7336bf5904f379a7391/dimod-0.12.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d872b654f150f38e7523685c075f743bce9df815a4190b4a935941e71b95ed0a",
                "md5": "d7377c529198edeb7b7153d6b23fab33",
                "sha256": "18eb7884836ec089def7dd0ee58b281b3e6cea4e06ae07fdd90ab0fcf7f95078"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7377c529198edeb7b7153d6b23fab33",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5091305,
            "upload_time": "2023-12-22T16:14:46",
            "upload_time_iso_8601": "2023-12-22T16:14:46.658369Z",
            "url": "https://files.pythonhosted.org/packages/d8/72/b654f150f38e7523685c075f743bce9df815a4190b4a935941e71b95ed0a/dimod-0.12.14-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf3ab77aad0ab0f36776c65bbbb613fe52e75228c324110caa043eb684a6a08c",
                "md5": "bedc2578548a9a3f77517069713691e5",
                "sha256": "5cf8b151c3e7ada58e9a96993d60b8551fc0fabba8a1aea368969e0b041dd461"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bedc2578548a9a3f77517069713691e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5383497,
            "upload_time": "2023-12-22T16:14:49",
            "upload_time_iso_8601": "2023-12-22T16:14:49.087573Z",
            "url": "https://files.pythonhosted.org/packages/bf/3a/b77aad0ab0f36776c65bbbb613fe52e75228c324110caa043eb684a6a08c/dimod-0.12.14-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae4b6fc872a56e530fe6397deb2a9bd329dfde24b2029f24dc9c16a26b5db8b7",
                "md5": "3fd59eab15bc1f44ba8d6a5b7d878adf",
                "sha256": "0ac1509e08097ef9e6dc50aefb49b921386ddd22253c28b13d8646b25d5decbd"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3fd59eab15bc1f44ba8d6a5b7d878adf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5131579,
            "upload_time": "2023-12-22T16:14:51",
            "upload_time_iso_8601": "2023-12-22T16:14:51.003461Z",
            "url": "https://files.pythonhosted.org/packages/ae/4b/6fc872a56e530fe6397deb2a9bd329dfde24b2029f24dc9c16a26b5db8b7/dimod-0.12.14-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbf407627bd9dc61cdde44e16d110c2779d5e14490225a96315d7a3530266922",
                "md5": "1953e4f4f7ce818b607e2203dc8ce928",
                "sha256": "736ecce3c68e92f74e523e0a42157557ed83dacf3453eadd11142f087b2401de"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1953e4f4f7ce818b607e2203dc8ce928",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 19013427,
            "upload_time": "2023-12-22T16:14:53",
            "upload_time_iso_8601": "2023-12-22T16:14:53.065116Z",
            "url": "https://files.pythonhosted.org/packages/db/f4/07627bd9dc61cdde44e16d110c2779d5e14490225a96315d7a3530266922/dimod-0.12.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3f370526a3ab02889c358f77ce38809245dc03f2d25e11e427116aa475aa331",
                "md5": "8275741e949b14555b26310b661ecf7c",
                "sha256": "0fcbc8f2fd84f4dbe0ae66a353979ac02bb568cccfa0c2a630d6d22a87383760"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8275741e949b14555b26310b661ecf7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 19323242,
            "upload_time": "2023-12-22T16:14:56",
            "upload_time_iso_8601": "2023-12-22T16:14:56.327390Z",
            "url": "https://files.pythonhosted.org/packages/e3/f3/70526a3ab02889c358f77ce38809245dc03f2d25e11e427116aa475aa331/dimod-0.12.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66a8b335fe939ab1676687a949d86c90273e98e6afc5e9dca6409752e623a701",
                "md5": "38652ecd4dde3a8f0332c070f5ae7eba",
                "sha256": "696fdba4c84d6db4b038bc5857f463fe168884d556e44c5c788b0fa5ed4742fd"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "38652ecd4dde3a8f0332c070f5ae7eba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5093379,
            "upload_time": "2023-12-22T16:14:58",
            "upload_time_iso_8601": "2023-12-22T16:14:58.963222Z",
            "url": "https://files.pythonhosted.org/packages/66/a8/b335fe939ab1676687a949d86c90273e98e6afc5e9dca6409752e623a701/dimod-0.12.14-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f33c19108b0b3f161e21f411f7897e322ad6fb6be14c947372ac214001021ae",
                "md5": "cd283b18ae6e5584e81c1af60c8a92c3",
                "sha256": "3f798a4e115feab5837418a2f41f73e105f72e33cfd42400d178940d49d8bcbf"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd283b18ae6e5584e81c1af60c8a92c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5334591,
            "upload_time": "2023-12-22T16:15:01",
            "upload_time_iso_8601": "2023-12-22T16:15:01.698536Z",
            "url": "https://files.pythonhosted.org/packages/3f/33/c19108b0b3f161e21f411f7897e322ad6fb6be14c947372ac214001021ae/dimod-0.12.14-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20534028fe69e2004dabec8271d5717fe303307dd5b2ca615dc8dd418b3d6fd3",
                "md5": "e7ddb3b39826c05a08723fd005d5a95c",
                "sha256": "bbfea985009985f4b701d3ff43c38a033698d3cfe0b0bdf4b33ef4acaa1cc9a3"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e7ddb3b39826c05a08723fd005d5a95c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5091117,
            "upload_time": "2023-12-22T16:15:04",
            "upload_time_iso_8601": "2023-12-22T16:15:04.599802Z",
            "url": "https://files.pythonhosted.org/packages/20/53/4028fe69e2004dabec8271d5717fe303307dd5b2ca615dc8dd418b3d6fd3/dimod-0.12.14-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fbee396087c8d9b5397aac196e071e9cb99a7964dff84eb8cb39f3e99a525f4",
                "md5": "dbc8522aee14e13ec2a967dbd0f6bd20",
                "sha256": "7d6fcf0d5e95eed3e328279eedbc70024da37088b159d5a93eb32bc554bf8cc9"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dbc8522aee14e13ec2a967dbd0f6bd20",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 18810412,
            "upload_time": "2023-12-22T16:15:06",
            "upload_time_iso_8601": "2023-12-22T16:15:06.696503Z",
            "url": "https://files.pythonhosted.org/packages/0f/be/e396087c8d9b5397aac196e071e9cb99a7964dff84eb8cb39f3e99a525f4/dimod-0.12.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e582a5759392c3050bd0aad793d23b2e6b22735972a6e41f3e8886aae916178e",
                "md5": "8b88e3f61fbc3195f59975538a0c3d79",
                "sha256": "692fe7277c96f35164dca04dce289c44bca3e1779b99af83bfb6e042cbc77157"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b88e3f61fbc3195f59975538a0c3d79",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 18986490,
            "upload_time": "2023-12-22T16:15:09",
            "upload_time_iso_8601": "2023-12-22T16:15:09.755889Z",
            "url": "https://files.pythonhosted.org/packages/e5/82/a5759392c3050bd0aad793d23b2e6b22735972a6e41f3e8886aae916178e/dimod-0.12.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5329b8173b15416a8c8578c9699811847175d4c4b84e2c96b973ed187fe5e1ef",
                "md5": "5330a7d2adcb77056e56aab5d1bdbe8a",
                "sha256": "579bc7f71ee7ef587b1fa8dceed0554d2026451d478123e7a66f5372b2b3cebf"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5330a7d2adcb77056e56aab5d1bdbe8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5105200,
            "upload_time": "2023-12-22T16:15:12",
            "upload_time_iso_8601": "2023-12-22T16:15:12.938124Z",
            "url": "https://files.pythonhosted.org/packages/53/29/b8173b15416a8c8578c9699811847175d4c4b84e2c96b973ed187fe5e1ef/dimod-0.12.14-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76fb54e6a8c6cd799af0ec483c070d66fb0ff36307c90127d4c790482b0f6ad4",
                "md5": "c3b983599055257733254964a80415a3",
                "sha256": "26deec7ad3b469e78c628383ff0d6080d8e1d541b172634c94c6a488ac776f28"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3b983599055257733254964a80415a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5369379,
            "upload_time": "2023-12-22T16:15:15",
            "upload_time_iso_8601": "2023-12-22T16:15:15.014450Z",
            "url": "https://files.pythonhosted.org/packages/76/fb/54e6a8c6cd799af0ec483c070d66fb0ff36307c90127d4c790482b0f6ad4/dimod-0.12.14-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07680fa905e92516122568d5d459692348c90442895648a4f60d082c46351f09",
                "md5": "511dbf0c23060f817b993ef7301022cb",
                "sha256": "a722b6c6a30c42aefd73293653690403f2c8f6db58521bdbb3e99ed2aef2e7cd"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "511dbf0c23060f817b993ef7301022cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5119991,
            "upload_time": "2023-12-22T16:15:18",
            "upload_time_iso_8601": "2023-12-22T16:15:18.659180Z",
            "url": "https://files.pythonhosted.org/packages/07/68/0fa905e92516122568d5d459692348c90442895648a4f60d082c46351f09/dimod-0.12.14-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e991001ef36744a948cd62b56c92ec87de39ccaee07a78822b9e12d9640399d",
                "md5": "ae024180c3635404d52834c0f0068b16",
                "sha256": "b384919f3f5f3da7390004255136750c2d53ea3f1a64ea1aff5b0a6044834876"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae024180c3635404d52834c0f0068b16",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 18563181,
            "upload_time": "2023-12-22T16:15:21",
            "upload_time_iso_8601": "2023-12-22T16:15:21.024414Z",
            "url": "https://files.pythonhosted.org/packages/7e/99/1001ef36744a948cd62b56c92ec87de39ccaee07a78822b9e12d9640399d/dimod-0.12.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a1c625f766ba0abc851702963f9f8c887a9f59335e4940c5ec1ac93976856d2",
                "md5": "5f976317965e7e35d45c9582576712df",
                "sha256": "85993c0a4477d3caefcd6a70fd55d143b5ffb13cc0319d22458ab651a56007f9"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f976317965e7e35d45c9582576712df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 18738318,
            "upload_time": "2023-12-22T16:15:23",
            "upload_time_iso_8601": "2023-12-22T16:15:23.657473Z",
            "url": "https://files.pythonhosted.org/packages/4a/1c/625f766ba0abc851702963f9f8c887a9f59335e4940c5ec1ac93976856d2/dimod-0.12.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1014e660c8a9049d1a4447e9b93640f27778d4abc91e42693f786a36a1ae656d",
                "md5": "fc98ddaa917acdf9c03bf6f42a7acc77",
                "sha256": "98cdf39dc2adc83c149f4bd2d6d9ba5b3e37349d238c3ebec24875db66e04e0b"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fc98ddaa917acdf9c03bf6f42a7acc77",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5081662,
            "upload_time": "2023-12-22T16:15:26",
            "upload_time_iso_8601": "2023-12-22T16:15:26.192323Z",
            "url": "https://files.pythonhosted.org/packages/10/14/e660c8a9049d1a4447e9b93640f27778d4abc91e42693f786a36a1ae656d/dimod-0.12.14-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25521518dafd955f13b42966677b8503f3abba2d5ad6e91fcf6923dabe87aefd",
                "md5": "1b3ebd331c8e4f00a806bfe35b526717",
                "sha256": "ae02597e33d8d3053202ea3cbcdd4261ee047253d416f63b812f7e19e7f3b060"
            },
            "downloads": -1,
            "filename": "dimod-0.12.14.tar.gz",
            "has_sig": false,
            "md5_digest": "1b3ebd331c8e4f00a806bfe35b526717",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2893046,
            "upload_time": "2023-12-22T16:15:28",
            "upload_time_iso_8601": "2023-12-22T16:15:28.300035Z",
            "url": "https://files.pythonhosted.org/packages/25/52/1518dafd955f13b42966677b8503f3abba2d5ad6e91fcf6923dabe87aefd/dimod-0.12.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-22 16:15:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dwavesystems",
    "github_project": "dimod",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "requirements": [],
    "lcname": "dimod"
}
        
Elapsed time: 0.49060s