{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3 :: Only", "Topic :: Scientific/Engineering :: Physics" ], "description": "PennyLane Qiskit Plugin\n#######################\n\n.. image:: https://img.shields.io/travis/com/XanaduAI/pennylane-qiskit/master.svg?style=popout-square\n :alt: Travis\n :target: https://travis-ci.com/XanaduAI/pennylane-qiskit\n\n.. image:: https://img.shields.io/codecov/c/github/XanaduAI/pennylane-qiskit/master.svg?style=popout-square\n :alt: Codecov coverage\n :target: https://codecov.io/gh/XanaduAI/pennylane-qiskit\n\n.. image:: https://img.shields.io/codacy/grade/f4132f03ce224f82bd3e8ba436b52af3.svg?style=popout-square\n :alt: Codacy grade\n :target: https://www.codacy.com/app/XanaduAI/pennylane-qiskit\n\n.. image:: https://img.shields.io/readthedocs/pennylane-qiskit.svg?style=popout-square\n :alt: Read the Docs\n :target: https://pennylane-qiskit.readthedocs.io\n\n.. image:: https://img.shields.io/pypi/v/PennyLane-qiskit.svg?style=popout-square\n :alt: PyPI\n :target: https://pypi.org/project/PennyLane-qiskit\n\n.. image:: https://img.shields.io/pypi/pyversions/PennyLane-qiskit.svg?style=popout-square\n :alt: PyPI - Python Version\n :target: https://pypi.org/project/PennyLane-qiskit\n\n.. header-start-inclusion-marker-do-not-remove\n\n`PennyLane `_ is a cross-platform Python library for quantum machine\nlearning, automatic differentiation, and optimization of hybrid quantum-classical computations.\n\n`Qiskit `_ is an open-source compilation framework capable of targeting various\ntypes of hardware and a high-performance quantum computer simulator with emulation capabilities, and various\ncompiler plug-ins.\n\nThis PennyLane plugin allows to use both the software and hardware backends of Qiskit as devices for PennyLane.\n\n\nFeatures\n========\n\n* Provides three devices to be used with PennyLane: ``qiskit.basicaer``, ``qiskit.aer`` and ``qiskit.ibmq``.\n These devices provide access to the various backends.\n\n* Supports a wide range of PennyLane operations and expectation values across the providers.\n\n* Combine Qiskit's high performance simulator and hardware backend support with PennyLane's automatic\n differentiation and optimization.\n\n.. header-end-inclusion-marker-do-not-remove\n.. installation-start-inclusion-marker-do-not-remove\n\nInstallation\n============\n\nThis plugin requires Python version 3.5 and above, as well as PennyLane and Qiskit.\nInstallation of this plugin, as well as all dependencies, can be done using ``pip``:\n\n.. code-block:: bash\n\n pip install pennylane-qiskit\n\nTo test that the PennyLane Qiskit plugin is working correctly you can run\n\n.. code-block:: bash\n\n $ make test\n\nin the source folder. Tests restricted to a specific provider can be run by executing\n``make test-basicaer``, ``make test-aer`` ``make test-ibmq``.\n\n.. note::\n\n Tests on the `IBMQ device `_ can\n only be run if a ``ibmqx_token`` for the\n `IBM Q experience `_ is\n configured in the `PennyLane configuration file `_.\n\n If this is the case, running ``make test`` also executes tests on the ``ibmq`` device.\n By default tests on the ``ibmq`` device run with ``ibmq_qasm_simulator`` backend\n and those done by the ``basicaer`` and ``aer`` device are run with the ``qasm_simulator``\n backend. At the time of writing this means that the test are \"free\".\n Please verify that this is also the case for your account.\n\n.. installation-end-inclusion-marker-do-not-remove\n.. gettingstarted-start-inclusion-marker-do-not-remove\n\nGetting started\n===============\n\nOnce the PennyLane-Qiskit plugin is installed, the three provided Qiskit devices\ncan be accessed straightaway in PennyLane.\n\nYou can instantiate a ``'qiskit.aer'`` device for PennyLane with:\n\n.. code-block:: python\n\n import pennylane as qml\n dev = qml.device('qiskit.aer', wires=2)\n\nThis device can then be used just like other devices for the definition and evaluation of QNodes within PennyLane.\nA simple quantum function that returns the expectation value of a measurement and depends on three classical input\nparameters would look like:\n\n.. code-block:: python\n\n @qml.qnode(dev)\n def circuit(x, y, z):\n qml.RZ(z, wires=[0])\n qml.RY(y, wires=[0])\n qml.RX(x, wires=[0])\n qml.CNOT(wires=[0, 1])\n return qml.expval(qml.PauliZ(wires=1))\n\nYou can then execute the circuit like any other function to get the quantum mechanical expectation value.\n\n.. code-block:: python\n\n circuit(0.2, 0.1, 0.3)\n\nYou can also change the default device's backend with\n\n.. code-block:: python\n\n dev = qml.device('qiskit.aer', wires=2, backend='unitary_simulator')\n\nTo get a current overview what backends are available you can query this by\n\n.. code-block:: python\n\n dev.capabilities()['backend']\n\nWhile the device ``'qiskit.aer'`` is the standard go-to simulator that is provided along\nthe Qiskit main package installation, there exists a natively included python simulator\nthat is slower but will work usually without the need to check out other dependencies\n(gcc, blas and so on) which can be used by ``'qiskit.basicaer'``.\n\nAnother important difference between the two is that while ``'qiskit.aer'``\nsupports a simulation with noise, ``'qiskit.basicaer'`` does not.\n\nNoise models\n============\n\nYou can instantiate a noise model and apply it to the device by calling\n\n.. code-block:: python\n\n import pennylane as qml\n\n import qiskit\n from qiskit.providers.aer.noise.device import basic_device_noise_model\n\n qiskit.IBMQ.load_accounts()\n ibmqx4 = qiskit.IBMQ.get_backend('ibmqx4')\n device_properties = ibmqx4.properties()\n\n noise_model = basic_device_noise_model(device_properties)\n\n dev = qml.device('qiskit.aer', wires=2, noise_model=noise_model)\n\nPlease refer to the Qiskit documentation for more information on\n`noise models `_.\n\nIBM Q Experience\n================\n\nPennyLane-Qiskit supports running PennyLane on IBM Q hardware via the ``qistkit.ibmq`` device.\nYou can choose between different backends - either simulators or real hardware.\n\n.. code-block:: python\n\n import pennylane as qml\n dev = qml.device('qiskit.ibmq', wires=2, backend='ibmqx4')\n\nBy default, the ``qiskit.ibmq`` device will attempt to use an already active or stored\nIBM Q account. If none are available, you may also directly pass your IBM Q API token,\nas well as an optional URL:\n\n.. code-block:: python\n\n import pennylane as qml\n dev = qml.device('qiskit.ibmq', wires=2, backend='ibmq_qasm_simulator', ibmqx_token=\"XXX\")\n\n\nIn order to avoid accidentally publishing your token, it is best to store it using the\n``qiskit.IBMQ.save_account()`` function. Alternatively, you can specify the token or URL via the\n`PennyLane configuration file `__ by\nadding a section such as\n\n.. code::\n\n [qiskit.global]\n\n [qiskit.ibmq]\n ibmqx_token = \"XXX\"\n ibmqx_url = \"XXX\"\n\nNote that, by default, the ``qiskit.ibmq`` device uses the simulator backend\n``ibmq_qasm_simulator``, but this may be changed to any of the real backends as given by\n\n.. code-block:: python\n\n dev.capabilities()['backend']\n\n.. gettingstarted-end-inclusion-marker-do-not-remove\n\nPlease refer to the `plugin documentation `_ as\nwell as to the `PennyLane documentation `_ for further reference.\n\n.. howtocite-start-inclusion-marker-do-not-remove\n\nHow to cite\n===========\n\nIf you are doing research using PennyLane, please cite `our whitepaper `_:\n\n Ville Bergholm, Josh Izaac, Maria Schuld, Christian Gogolin, Carsten Blank, Keri McKiernan and Nathan Killoran.\n PennyLane. *arXiv*, 2018. arXiv:1811.04968\n\n.. howtocite-end-inclusion-marker-do-not-remove\n\nContributing\n============\n\nWe welcome contributions - simply fork the repository of this plugin, and then make a\n`pull request `_ containing your contribution.\nAll contributers to this plugin will be listed as authors on the releases.\n\nWe also encourage bug reports, suggestions for new features and enhancements, and even links to cool projects\nor applications built on PennyLane.\n\n\nAuthors\n=======\n\nShahnawaz Ahmed, Carsten Blank, Sebastian Boerakker, Christian Gogolin, Josh Izaac.\n\n.. support-start-inclusion-marker-do-not-remove\n\nSupport\n=======\n\n- **Source Code:** https://github.com/XanaduAI/pennylane-qiskit\n- **Issue Tracker:** https://github.com/XanaduAI/pennylane-qiskit/issues\n\nIf you are having issues, please let us know by posting the issue on our Github issue tracker.\n\n.. support-end-inclusion-marker-do-not-remove\n.. license-start-inclusion-marker-do-not-remove\n\nLicense\n=======\n\nThe PennyLane qiskit plugin is **free** and **open source**, released under\nthe `Apache License, Version 2.0 `_.\n\n.. license-end-inclusion-marker-do-not-remove\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/XanaduAI/pennylane-qiskit", "keywords": "", "license": "Apache License 2.0", "maintainer": "Xanadu", "maintainer_email": "software@xanadu.ai", "name": "PennyLane-qiskit", "package_url": "https://pypi.org/project/PennyLane-qiskit/", "platform": "", "project_url": "https://pypi.org/project/PennyLane-qiskit/", "project_urls": { "Homepage": "https://github.com/XanaduAI/pennylane-qiskit" }, "release_url": "https://pypi.org/project/PennyLane-qiskit/0.6.0/", "requires_dist": [ "qiskit (>=0.12)", "pennylane (>=0.6.0)", "numpy" ], "requires_python": "", "summary": "PennyLane plugin for qiskit-terra", "version": "0.6.0" }, "last_serial": 5997810, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "d0c8bfd7d7959ed3acf62c97b7f1be36", "sha256": "ef3f8944c4ac8fa7329f7fa4e5c56535ed410076a47a300d2f4073564d56f3f0" }, "downloads": -1, "filename": "PennyLane_qiskit-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d0c8bfd7d7959ed3acf62c97b7f1be36", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 15723, "upload_time": "2018-11-30T14:05:00", "url": "https://files.pythonhosted.org/packages/53/96/d331ec2036ea8587af31cb653360e1efdca6b9fadb6227202a95cbd79afb/PennyLane_qiskit-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16eae1cdc2de54f90dbb07b20b7a18d5", "sha256": "4d33c31ffcecf652c521e69c4f765aaf7d64e204a9f168f27be750dc900a502f" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.1.tar.gz", "has_sig": false, "md5_digest": "16eae1cdc2de54f90dbb07b20b7a18d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9187, "upload_time": "2018-11-30T14:05:03", "url": "https://files.pythonhosted.org/packages/d9/f6/4b25e88359af042e5d6c9048278ec8b5165e3f5b28031ba3b3a32f234362/PennyLane-qiskit-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "58fe119b8618154905c10708aa73b1f4", "sha256": "4971bc92f7af17ea74fc88ac28bdd8f57d47ee1257c419d5e00b1e0dc30bf1a1" }, "downloads": -1, "filename": "PennyLane_qiskit-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "58fe119b8618154905c10708aa73b1f4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17284, "upload_time": "2018-12-23T16:27:36", "url": "https://files.pythonhosted.org/packages/6b/f5/fdea0f99bfd9faff4c3d1940b44a2c24f504620ce0093f30e1a890b27649/PennyLane_qiskit-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b48aa7e94019ac3472c9ee46e8a0528", "sha256": "c8b1fc62c47a12909c81ab8538b8cb0edd507a6bf127181a5022ac7be6f3db85" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.2.tar.gz", "has_sig": false, "md5_digest": "3b48aa7e94019ac3472c9ee46e8a0528", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10172, "upload_time": "2018-12-23T16:27:39", "url": "https://files.pythonhosted.org/packages/7d/e0/758ae04912e178a8b585aaf1082287ab22b7ddc9c7b510be62eee045c136/PennyLane-qiskit-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "6e2b4e66bc3751c261f1ff4eb0619bea", "sha256": "4d89ccfbcb088721ac9859ed9df502ca5b108db7a6ee9388794cb65be7f74a1f" }, "downloads": -1, "filename": "PennyLane_qiskit-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "6e2b4e66bc3751c261f1ff4eb0619bea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17231, "upload_time": "2019-02-04T16:05:28", "url": "https://files.pythonhosted.org/packages/d5/24/64c0a6b37fd7cf18d99a179a99904c3b6e2a89edd53181d160a30cedc5b0/PennyLane_qiskit-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6380d78fe9ea872d877751f4aa922d13", "sha256": "3cbdd4331c11ee617d12d19f09cdc90b21647ef6c4fe5f13768002db176de448" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.3.tar.gz", "has_sig": false, "md5_digest": "6380d78fe9ea872d877751f4aa922d13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11604, "upload_time": "2019-02-04T16:05:29", "url": "https://files.pythonhosted.org/packages/7f/de/a356129d36cd5ad9129e71babdef1df766c6d6a1e9cded9a788b5faabde5/PennyLane-qiskit-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "1f12b456a20c85d688ba9351c1448173", "sha256": "2b3e96d0cbda7e9721382437eded36a85a6fddf057aaff61318634a78c83d016" }, "downloads": -1, "filename": "PennyLane_qiskit-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "1f12b456a20c85d688ba9351c1448173", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17497, "upload_time": "2019-02-15T15:49:53", "url": "https://files.pythonhosted.org/packages/e3/eb/c651011d5edfbb180fa64ab477b854f46b7ee9667d8e46b845e47da8a4eb/PennyLane_qiskit-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b80d819b4dc56350e0e1f8f1cbaaca7", "sha256": "320bf4e7ca630d2542e2dfba1ea834c643399fc9610872468e5f0f63f71a0d81" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.4.tar.gz", "has_sig": false, "md5_digest": "2b80d819b4dc56350e0e1f8f1cbaaca7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11287, "upload_time": "2019-02-15T15:49:55", "url": "https://files.pythonhosted.org/packages/62/9f/00ce50a76d87053bf0b2d3ffe00837071a6710829cc9b76bb271dcc5373b/PennyLane-qiskit-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "7a757f6276afb2106b0f9b831dfee88c", "sha256": "0665bea9b9e828578eaabf391de1b40b33eaa69fc6487cff081707371e7c0ff3" }, "downloads": -1, "filename": "PennyLane_qiskit-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "7a757f6276afb2106b0f9b831dfee88c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17488, "upload_time": "2019-02-15T16:48:57", "url": "https://files.pythonhosted.org/packages/98/30/4e0611c0552b523b5a6addaacee801f5477aa86538750045408b7674d190/PennyLane_qiskit-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8799386e54b648b5ecb9231cf946be05", "sha256": "d69a18ed30ac9eea6fead9654b7d2e437ad3e84111cac1595d47038e7d0d6643" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.5.tar.gz", "has_sig": false, "md5_digest": "8799386e54b648b5ecb9231cf946be05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11284, "upload_time": "2019-02-15T16:48:59", "url": "https://files.pythonhosted.org/packages/2d/a4/e4b8e45c61000094fadb54ae8746ca4b30e1071cc97cf05559bcd284ae08/PennyLane-qiskit-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "81accebaee2b779007c609bc93699930", "sha256": "8c40722d86cd9c21afb3c554db89dbfd25c054ff5dc6f6a3c7e666f4e56c0d87" }, "downloads": -1, "filename": "PennyLane_qiskit-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "81accebaee2b779007c609bc93699930", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17378, "upload_time": "2019-04-22T11:36:05", "url": "https://files.pythonhosted.org/packages/4e/1b/09ede186d4a75bc4e56762c558cdd806b4469e78269f335042f05f80b41d/PennyLane_qiskit-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ef8aa33e9e22085c3d9f047a28f38f97", "sha256": "b66005678af7e86709a2310a7c8cd7b5025b09f76fe58fd2f0a05b55b5f37409" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.6.tar.gz", "has_sig": false, "md5_digest": "ef8aa33e9e22085c3d9f047a28f38f97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13528, "upload_time": "2019-04-22T11:36:07", "url": "https://files.pythonhosted.org/packages/e7/9e/f4961b1b0632c155a65df59579fd7be407df3bf4da278e1a419f5cc9fe3f/PennyLane-qiskit-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "12d6c5a9368d3e17b56cc40d1e26866d", "sha256": "e3290d99b143c546350a73cb9f5ee150be255be135d8204ddb5af7466531d609" }, "downloads": -1, "filename": "PennyLane_qiskit-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "12d6c5a9368d3e17b56cc40d1e26866d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 17719, "upload_time": "2019-05-17T15:09:33", "url": "https://files.pythonhosted.org/packages/68/b1/52c1f4c92833533263e1ad07c8631d90cc3b7096acbbc96d39e0b8b95ac4/PennyLane_qiskit-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9767f3845f08f62c4f14989261dec9a5", "sha256": "f8f623dc7962446a1df46246aaf73c9f4b48b7d8538fbbe1b9229835df33be60" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.7.tar.gz", "has_sig": false, "md5_digest": "9767f3845f08f62c4f14989261dec9a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13575, "upload_time": "2019-05-17T15:09:35", "url": "https://files.pythonhosted.org/packages/8f/69/8df51bff3a4e16b10cc50709be9a7f6e967289cdcdb19a3fa9bd4b64861a/PennyLane-qiskit-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "d4685712cde9c5c97672c06c16869d1e", "sha256": "52ce74a47a239d5f8e5fccdf4291477a1fe93e31361e76cd347d4062f96f33d9" }, "downloads": -1, "filename": "PennyLane-qiskit-0.0.8.tar.gz", "has_sig": false, "md5_digest": "d4685712cde9c5c97672c06c16869d1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18252, "upload_time": "2019-07-03T13:45:38", "url": "https://files.pythonhosted.org/packages/4e/04/8dfd357553ab4e58384c7fa37cdcd7684485eb3f664cd30ce5020c5a702d/PennyLane-qiskit-0.0.8.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "827355c6d1614aebe69f0d4273415606", "sha256": "94e8954d80160386e4a640ef19a31927317dac9a84a4963ce04ec37ce624cf4e" }, "downloads": -1, "filename": "PennyLane_qiskit-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "827355c6d1614aebe69f0d4273415606", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23074, "upload_time": "2019-09-10T13:14:27", "url": "https://files.pythonhosted.org/packages/0d/15/5292e3eff9cff1fbd1888195671975aea0e20dcdc031769859f5a4a9a0b9/PennyLane_qiskit-0.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b4f9f49665fdb304db162101c13b814", "sha256": "1d4f238d3fbb7bb87c2613604ac2a01c6cf78d34ea4fd70cd3dddcb931932e4c" }, "downloads": -1, "filename": "PennyLane-qiskit-0.5.0.tar.gz", "has_sig": false, "md5_digest": "8b4f9f49665fdb304db162101c13b814", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13946, "upload_time": "2019-09-10T13:14:29", "url": "https://files.pythonhosted.org/packages/32/e2/c6c554655e530e16d3d9fb70d0a4c3264f70cd930ea00dd6e79314ae3ff4/PennyLane-qiskit-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "1202eabedd25796cfccfa0c912089160", "sha256": "2a34e80994dbbf99c2a1cf7a0630a73b39f123c670d7b60d4c28b4ea62ec54f0" }, "downloads": -1, "filename": "PennyLane_qiskit-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1202eabedd25796cfccfa0c912089160", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23161, "upload_time": "2019-09-14T01:37:17", "url": "https://files.pythonhosted.org/packages/00/72/610be649fc484115ba88e38ba6558ebae3506f6313d36ef832ec114a306b/PennyLane_qiskit-0.5.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57cb66032545dddd47935a064ed0577b", "sha256": "c3077f9817197d0befcd38296634831b05b3dbf3a0ce9c6c9a20943ca1aa2aab" }, "downloads": -1, "filename": "PennyLane-qiskit-0.5.1.tar.gz", "has_sig": false, "md5_digest": "57cb66032545dddd47935a064ed0577b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13870, "upload_time": "2019-09-14T01:37:20", "url": "https://files.pythonhosted.org/packages/39/a6/234053fb1fdff14d773d5161d18b2d21dcf46fb59499d8d66cfd0d597b25/PennyLane-qiskit-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "87794a8e4cde9468f8140439978a4d00", "sha256": "1d909d75eaae9599ef7cac3fb13e9b77c00495480bb62ae46b6d672ed1dd1fcd" }, "downloads": -1, "filename": "PennyLane_qiskit-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "87794a8e4cde9468f8140439978a4d00", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23904, "upload_time": "2019-10-18T22:05:11", "url": "https://files.pythonhosted.org/packages/19/dc/2a51671abd5184e4101d69e1afcc7a5d2c87d30a5abb1f71dea9be152a91/PennyLane_qiskit-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca3090d8510be2a06c1e2678f2239150", "sha256": "cb26987ff427e68fd789d65332d331f1db3d623603dd0f8392c7290fefd60703" }, "downloads": -1, "filename": "PennyLane-qiskit-0.6.0.tar.gz", "has_sig": false, "md5_digest": "ca3090d8510be2a06c1e2678f2239150", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14731, "upload_time": "2019-10-18T22:05:14", "url": "https://files.pythonhosted.org/packages/97/bd/51bb9bf386325444f73feb8df78452e5027e12beaae14842de054ee94b26/PennyLane-qiskit-0.6.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "87794a8e4cde9468f8140439978a4d00", "sha256": "1d909d75eaae9599ef7cac3fb13e9b77c00495480bb62ae46b6d672ed1dd1fcd" }, "downloads": -1, "filename": "PennyLane_qiskit-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "87794a8e4cde9468f8140439978a4d00", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23904, "upload_time": "2019-10-18T22:05:11", "url": "https://files.pythonhosted.org/packages/19/dc/2a51671abd5184e4101d69e1afcc7a5d2c87d30a5abb1f71dea9be152a91/PennyLane_qiskit-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca3090d8510be2a06c1e2678f2239150", "sha256": "cb26987ff427e68fd789d65332d331f1db3d623603dd0f8392c7290fefd60703" }, "downloads": -1, "filename": "PennyLane-qiskit-0.6.0.tar.gz", "has_sig": false, "md5_digest": "ca3090d8510be2a06c1e2678f2239150", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14731, "upload_time": "2019-10-18T22:05:14", "url": "https://files.pythonhosted.org/packages/97/bd/51bb9bf386325444f73feb8df78452e5027e12beaae14842de054ee94b26/PennyLane-qiskit-0.6.0.tar.gz" } ] }