qiskit


Nameqiskit JSON
Version 1.0.2 PyPI version JSON
download
home_page
SummaryAn open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.
upload_time2024-03-07 23:06:13
maintainer
docs_urlNone
author
requires_python>=3.8
licenseApache 2.0
keywords qiskit quantum circuit quantum computing quantum programming language quantum sdk
VCS
bugtrack_url
requirements rustworkx numpy scipy sympy dill python-dateutil stevedore typing-extensions symengine
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Qiskit
[![License](https://img.shields.io/github/license/Qiskit/qiskit.svg?)](https://opensource.org/licenses/Apache-2.0) <!--- long-description-skip-begin -->
[![Release](https://img.shields.io/github/release/Qiskit/qiskit.svg)](https://github.com/Qiskit/qiskit/releases)
[![Downloads](https://img.shields.io/pypi/dm/qiskit.svg)](https://pypi.org/project/qiskit/)
[![Coverage Status](https://coveralls.io/repos/github/Qiskit/qiskit/badge.svg?branch=main)](https://coveralls.io/github/Qiskit/qiskit?branch=main)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qiskit)
[![Minimum rustc 1.70](https://img.shields.io/badge/rustc-1.70+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
[![Downloads](https://static.pepy.tech/badge/qiskit)](https://pepy.tech/project/qiskit)<!--- long-description-skip-end -->
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2583252.svg)](https://doi.org/10.5281/zenodo.2583252)

**Qiskit**  is an open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.

This library is the core component of Qiskit, which contains the building blocks for creating and working with quantum circuits, quantum operators, and primitive functions (sampler and estimator).
It also contains a transpiler that supports optimizing quantum circuits and a quantum information toolbox for creating advanced quantum operators. 

For more details on how to use Qiskit, refer to the documentation located here:

<https://docs.quantum.ibm.com/>


## Installation

We encourage installing Qiskit via ``pip``:

```bash
pip install qiskit
```

Pip will handle all dependencies automatically and you will always install the latest (and well-tested) version.

To install from source, follow the instructions in the [documentation](https://docs.quantum.ibm.com/start/install-qiskit-source).

## Create your first quantum program in Qiskit

Now that Qiskit is installed, it's time to begin working with Qiskit. The essential parts of a quantum program are:
1. Define and build a quantum circuit that represents the quantum state
2. Define the classical output by measurements or a set of observable operators
3. Depending on the output, use the primitive function `sampler` to sample outcomes or the `estimator` to estimate values.

Create an example quantum circuit using the `QuantumCircuit` class:

```python
import numpy as np
from qiskit import QuantumCircuit

# 1. A quantum circuit for preparing the quantum state |000> + i |111>
qc_example = QuantumCircuit(3)
qc_example.h(0)          # generate superpostion
qc_example.p(np.pi/2,0)  # add quantum phase
qc_example.cx(0,1)       # 0th-qubit-Controlled-NOT gate on 1st qubit
qc_example.cx(0,2)       # 0th-qubit-Controlled-NOT gate on 2nd qubit
```

This simple example makes an entangled state known as a [GHZ state](https://en.wikipedia.org/wiki/Greenberger%E2%80%93Horne%E2%80%93Zeilinger_state) $(|000\rangle + i|111\rangle)/\sqrt{2}$. It uses the standard quantum gates: Hadamard gate (`h`), Phase gate (`p`), and CNOT gate (`cx`). 

Once you've made your first quantum circuit, choose which primitive function you will use. Starting with `sampler`,
we use `measure_all(inplace=False)` to get a copy of the circuit in which all the qubits are measured:

```python
# 2. Add the classical output in the form of measurement of all qubits
qc_measured = qc_example.measure_all(inplace=False)

# 3. Execute using the Sampler primitive
from qiskit.primitives.sampler import Sampler
sampler = Sampler()
job = sampler.run(qc_measured, shots=1000)
result = job.result()
print(f" > Quasi probability distribution: {result.quasi_dists}")
```
Running this will give an outcome similar to `{0: 0.497, 7: 0.503}` which is `000` 50% of the time and `111` 50% of the time up to statistical fluctuations.
To illustrate the power of Estimator, we now use the quantum information toolbox to create the operator $XXY+XYX+YXX-YYY$ and pass it to the `run()` function, along with our quantum circuit. Note the Estimator requires a circuit _**without**_ measurement, so we use the `qc_example` circuit we created earlier.

```python
# 2. define the observable to be measured 
from qiskit.quantum_info import SparsePauliOp
operator = SparsePauliOp.from_list([("XXY", 1), ("XYX", 1), ("YXX", 1), ("YYY", -1)])

# 3. Execute using the Estimator primitive
from qiskit.primitives import Estimator
estimator = Estimator()
job = estimator.run(qc_example, operator, shots=1000)
result = job.result()
print(f" > Expectation values: {result.values}")
```

Running this will give the outcome `4`. For fun, try to assign a value of +/- 1 to each single-qubit operator X and Y 
and see if you can achieve this outcome. (Spoiler alert: this is not possible!)

Using the Qiskit-provided `qiskit.primitives.Sampler` and `qiskit.primitives.Estimator` will not take you very far. The power of quantum computing cannot be simulated 
on classical computers and you need to use real quantum hardware to scale to larger quantum circuits. However, running a quantum 
circuit on hardware requires rewriting them to the basis gates and connectivity of the quantum hardware.
The tool that does this is the [transpiler](https://docs.quantum.ibm.com/api/qiskit/transpiler) 
and Qiskit includes transpiler passes for synthesis, optimization, mapping, and scheduling. However, it also includes a
default compiler which works very well in most examples. The following code will map the example circuit to the `basis_gates = ['cz', 'sx', 'rz']` and a linear chain of qubits $0 \rightarrow 1 \rightarrow 2$ with the `coupling_map =[[0, 1], [1, 2]]`.

```python
from qiskit import transpile
qc_transpiled = transpile(qc_example, basis_gates = ['cz', 'sx', 'rz'], coupling_map =[[0, 1], [1, 2]] , optimization_level=3)
```

### Executing your code on real quantum hardware

Qiskit provides an abstraction layer that lets users run quantum circuits on hardware from any vendor that provides a compatible interface. 
The best way to use Qiskit is with a runtime environment that provides optimized implementations of `sampler` and `estimator` for a given hardware platform. This runtime may involve using pre- and post-processing, such as optimized transpiler passes with error suppression, error mitigation, and, eventually, error correction built in. A runtime implements `qiskit.primitives.BaseSampler` and `qiskit.primitives.BaseEstimator` interfaces. For example,
some packages that provide implementations of a runtime primitive implementation are:

* https://github.com/Qiskit/qiskit-ibm-runtime

Qiskit also provides a lower-level abstract interface for describing quantum backends. This interface, located in
``qiskit.providers``, defines an abstract `BackendV2` class that providers can implement to represent their
hardware or simulators to Qiskit. The backend class includes a common interface for executing circuits on the backends; however, in this interface each provider may perform different types of pre- and post-processing and return outcomes that are vendor-defined. Some examples of published provider packages that interface with real hardware are:

* https://github.com/Qiskit/qiskit-ibm-provider
* https://github.com/qiskit-community/qiskit-ionq
* https://github.com/qiskit-community/qiskit-aqt-provider
* https://github.com/qiskit-community/qiskit-braket-provider
* https://github.com/qiskit-community/qiskit-quantinuum-provider
* https://github.com/rigetti/qiskit-rigetti

<!-- This is not an exhaustive list, and if you maintain a provider package please feel free to open a PR to add new providers -->

You can refer to the documentation of these packages for further instructions
on how to get access and use these systems.

## Contribution Guidelines

If you'd like to contribute to Qiskit, please take a look at our
[contribution guidelines](CONTRIBUTING.md). By participating, you are expected to uphold our [code of conduct](CODE_OF_CONDUCT.md).

We use [GitHub issues](https://github.com/Qiskit/qiskit-terra/issues) for tracking requests and bugs. Please
[join the Qiskit Slack community](https://qisk.it/join-slack) for discussion, comments, and questions.
For questions related to running or using Qiskit, [Stack Overflow has a `qiskit`](https://stackoverflow.com/questions/tagged/qiskit).
For questions on quantum computing with Qiskit, use the `qiskit` tag in the [Quantum Computing Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit) (please, read first the [guidelines on how to ask](https://quantumcomputing.stackexchange.com/help/how-to-ask) in that forum).


## Authors and Citation

Qiskit is the work of [many people](https://github.com/Qiskit/qiskit-terra/graphs/contributors) who contribute
to the project at different levels. If you use Qiskit, please cite as per the included [BibTeX file](CITATION.bib).

## Changelog and Release Notes

The changelog for a particular release is dynamically generated and gets
written to the release page on Github for each release. For example, you can
find the page for the `0.46.0` release here:

<https://github.com/Qiskit/qiskit/releases/tag/0.46.0>

The changelog for the current release can be found in the releases tab:
[![Releases](https://img.shields.io/github/release/Qiskit/qiskit-terra.svg?style=flat&label=)](https://github.com/Qiskit/qiskit/releases)
The changelog provides a quick overview of notable changes for a given
release.

Additionally, as part of each release, detailed release notes are written to
document in detail what has changed as part of a release. This includes any
documentation on potential breaking changes on upgrade and new features. See [all release notes here](https://docs.quantum.ibm.com/api/qiskit/release-notes).

## Acknowledgements

We acknowledge partial support for Qiskit development from the DOE Office of Science National Quantum Information Science Research Centers, Co-design Center for Quantum Advantage (C2QA) under contract number DE-SC0012704.

## License

[Apache License 2.0](LICENSE.txt)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "qiskit",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "qiskit,quantum circuit,quantum computing,quantum programming language,quantum,sdk",
    "author": "",
    "author_email": "Qiskit Development Team <qiskit@us.ibm.com>",
    "download_url": "https://files.pythonhosted.org/packages/63/ec/f2c939f5ab27117558d7aacfd3f84e43ce67385002b88a10142b9f51b6b7/qiskit-1.0.2.tar.gz",
    "platform": null,
    "description": "# Qiskit\n[![License](https://img.shields.io/github/license/Qiskit/qiskit.svg?)](https://opensource.org/licenses/Apache-2.0) <!--- long-description-skip-begin -->\n[![Release](https://img.shields.io/github/release/Qiskit/qiskit.svg)](https://github.com/Qiskit/qiskit/releases)\n[![Downloads](https://img.shields.io/pypi/dm/qiskit.svg)](https://pypi.org/project/qiskit/)\n[![Coverage Status](https://coveralls.io/repos/github/Qiskit/qiskit/badge.svg?branch=main)](https://coveralls.io/github/Qiskit/qiskit?branch=main)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qiskit)\n[![Minimum rustc 1.70](https://img.shields.io/badge/rustc-1.70+-blue.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)\n[![Downloads](https://static.pepy.tech/badge/qiskit)](https://pepy.tech/project/qiskit)<!--- long-description-skip-end -->\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2583252.svg)](https://doi.org/10.5281/zenodo.2583252)\n\n**Qiskit**  is an open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.\n\nThis library is the core component of Qiskit, which contains the building blocks for creating and working with quantum circuits, quantum operators, and primitive functions (sampler and estimator).\nIt also contains a transpiler that supports optimizing quantum circuits and a quantum information toolbox for creating advanced quantum operators. \n\nFor more details on how to use Qiskit, refer to the documentation located here:\n\n<https://docs.quantum.ibm.com/>\n\n\n## Installation\n\nWe encourage installing Qiskit via ``pip``:\n\n```bash\npip install qiskit\n```\n\nPip will handle all dependencies automatically and you will always install the latest (and well-tested) version.\n\nTo install from source, follow the instructions in the [documentation](https://docs.quantum.ibm.com/start/install-qiskit-source).\n\n## Create your first quantum program in Qiskit\n\nNow that Qiskit is installed, it's time to begin working with Qiskit. The essential parts of a quantum program are:\n1. Define and build a quantum circuit that represents the quantum state\n2. Define the classical output by measurements or a set of observable operators\n3. Depending on the output, use the primitive function `sampler` to sample outcomes or the `estimator` to estimate values.\n\nCreate an example quantum circuit using the `QuantumCircuit` class:\n\n```python\nimport numpy as np\nfrom qiskit import QuantumCircuit\n\n# 1. A quantum circuit for preparing the quantum state |000> + i |111>\nqc_example = QuantumCircuit(3)\nqc_example.h(0)          # generate superpostion\nqc_example.p(np.pi/2,0)  # add quantum phase\nqc_example.cx(0,1)       # 0th-qubit-Controlled-NOT gate on 1st qubit\nqc_example.cx(0,2)       # 0th-qubit-Controlled-NOT gate on 2nd qubit\n```\n\nThis simple example makes an entangled state known as a [GHZ state](https://en.wikipedia.org/wiki/Greenberger%E2%80%93Horne%E2%80%93Zeilinger_state) $(|000\\rangle + i|111\\rangle)/\\sqrt{2}$. It uses the standard quantum gates: Hadamard gate (`h`), Phase gate (`p`), and CNOT gate (`cx`). \n\nOnce you've made your first quantum circuit, choose which primitive function you will use. Starting with `sampler`,\nwe use `measure_all(inplace=False)` to get a copy of the circuit in which all the qubits are measured:\n\n```python\n# 2. Add the classical output in the form of measurement of all qubits\nqc_measured = qc_example.measure_all(inplace=False)\n\n# 3. Execute using the Sampler primitive\nfrom qiskit.primitives.sampler import Sampler\nsampler = Sampler()\njob = sampler.run(qc_measured, shots=1000)\nresult = job.result()\nprint(f\" > Quasi probability distribution: {result.quasi_dists}\")\n```\nRunning this will give an outcome similar to `{0: 0.497, 7: 0.503}` which is `000` 50% of the time and `111` 50% of the time up to statistical fluctuations.\nTo illustrate the power of Estimator, we now use the quantum information toolbox to create the operator $XXY+XYX+YXX-YYY$ and pass it to the `run()` function, along with our quantum circuit. Note the Estimator requires a circuit _**without**_ measurement, so we use the `qc_example` circuit we created earlier.\n\n```python\n# 2. define the observable to be measured \nfrom qiskit.quantum_info import SparsePauliOp\noperator = SparsePauliOp.from_list([(\"XXY\", 1), (\"XYX\", 1), (\"YXX\", 1), (\"YYY\", -1)])\n\n# 3. Execute using the Estimator primitive\nfrom qiskit.primitives import Estimator\nestimator = Estimator()\njob = estimator.run(qc_example, operator, shots=1000)\nresult = job.result()\nprint(f\" > Expectation values: {result.values}\")\n```\n\nRunning this will give the outcome `4`. For fun, try to assign a value of +/- 1 to each single-qubit operator X and Y \nand see if you can achieve this outcome. (Spoiler alert: this is not possible!)\n\nUsing the Qiskit-provided `qiskit.primitives.Sampler` and `qiskit.primitives.Estimator` will not take you very far. The power of quantum computing cannot be simulated \non classical computers and you need to use real quantum hardware to scale to larger quantum circuits. However, running a quantum \ncircuit on hardware requires rewriting them to the basis gates and connectivity of the quantum hardware.\nThe tool that does this is the [transpiler](https://docs.quantum.ibm.com/api/qiskit/transpiler) \nand Qiskit includes transpiler passes for synthesis, optimization, mapping, and scheduling. However, it also includes a\ndefault compiler which works very well in most examples. The following code will map the example circuit to the `basis_gates = ['cz', 'sx', 'rz']` and a linear chain of qubits $0 \\rightarrow 1 \\rightarrow 2$ with the `coupling_map =[[0, 1], [1, 2]]`.\n\n```python\nfrom qiskit import transpile\nqc_transpiled = transpile(qc_example, basis_gates = ['cz', 'sx', 'rz'], coupling_map =[[0, 1], [1, 2]] , optimization_level=3)\n```\n\n### Executing your code on real quantum hardware\n\nQiskit provides an abstraction layer that lets users run quantum circuits on hardware from any vendor that provides a compatible interface. \nThe best way to use Qiskit is with a runtime environment that provides optimized implementations of `sampler` and `estimator` for a given hardware platform. This runtime may involve using pre- and post-processing, such as optimized transpiler passes with error suppression, error mitigation, and, eventually, error correction built in. A runtime implements `qiskit.primitives.BaseSampler` and `qiskit.primitives.BaseEstimator` interfaces. For example,\nsome packages that provide implementations of a runtime primitive implementation are:\n\n* https://github.com/Qiskit/qiskit-ibm-runtime\n\nQiskit also provides a lower-level abstract interface for describing quantum backends. This interface, located in\n``qiskit.providers``, defines an abstract `BackendV2` class that providers can implement to represent their\nhardware or simulators to Qiskit. The backend class includes a common interface for executing circuits on the backends; however, in this interface each provider may perform different types of pre- and post-processing and return outcomes that are vendor-defined. Some examples of published provider packages that interface with real hardware are:\n\n* https://github.com/Qiskit/qiskit-ibm-provider\n* https://github.com/qiskit-community/qiskit-ionq\n* https://github.com/qiskit-community/qiskit-aqt-provider\n* https://github.com/qiskit-community/qiskit-braket-provider\n* https://github.com/qiskit-community/qiskit-quantinuum-provider\n* https://github.com/rigetti/qiskit-rigetti\n\n<!-- This is not an exhaustive list, and if you maintain a provider package please feel free to open a PR to add new providers -->\n\nYou can refer to the documentation of these packages for further instructions\non how to get access and use these systems.\n\n## Contribution Guidelines\n\nIf you'd like to contribute to Qiskit, please take a look at our\n[contribution guidelines](CONTRIBUTING.md). By participating, you are expected to uphold our [code of conduct](CODE_OF_CONDUCT.md).\n\nWe use [GitHub issues](https://github.com/Qiskit/qiskit-terra/issues) for tracking requests and bugs. Please\n[join the Qiskit Slack community](https://qisk.it/join-slack) for discussion, comments, and questions.\nFor questions related to running or using Qiskit, [Stack Overflow has a `qiskit`](https://stackoverflow.com/questions/tagged/qiskit).\nFor questions on quantum computing with Qiskit, use the `qiskit` tag in the [Quantum Computing Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit) (please, read first the [guidelines on how to ask](https://quantumcomputing.stackexchange.com/help/how-to-ask) in that forum).\n\n\n## Authors and Citation\n\nQiskit is the work of [many people](https://github.com/Qiskit/qiskit-terra/graphs/contributors) who contribute\nto the project at different levels. If you use Qiskit, please cite as per the included [BibTeX file](CITATION.bib).\n\n## Changelog and Release Notes\n\nThe changelog for a particular release is dynamically generated and gets\nwritten to the release page on Github for each release. For example, you can\nfind the page for the `0.46.0` release here:\n\n<https://github.com/Qiskit/qiskit/releases/tag/0.46.0>\n\nThe changelog for the current release can be found in the releases tab:\n[![Releases](https://img.shields.io/github/release/Qiskit/qiskit-terra.svg?style=flat&label=)](https://github.com/Qiskit/qiskit/releases)\nThe changelog provides a quick overview of notable changes for a given\nrelease.\n\nAdditionally, as part of each release, detailed release notes are written to\ndocument in detail what has changed as part of a release. This includes any\ndocumentation on potential breaking changes on upgrade and new features. See [all release notes here](https://docs.quantum.ibm.com/api/qiskit/release-notes).\n\n## Acknowledgements\n\nWe acknowledge partial support for Qiskit development from the DOE Office of Science National Quantum Information Science Research Centers, Co-design Center for Quantum Advantage (C2QA) under contract number DE-SC0012704.\n\n## License\n\n[Apache License 2.0](LICENSE.txt)\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "An open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives.",
    "version": "1.0.2",
    "project_urls": {
        "API Reference": "https://docs.quantum.ibm.com/api/qiskit",
        "Changelog": "https://docs.quantum.ibm.com/api/qiskit/release-notes",
        "Documentation": "https://docs.quantum.ibm.com",
        "Homepage": "https://www.ibm.com/quantum/qiskit",
        "Issues": "https://github.com/Qiskit/qiskit/issues",
        "Repository": "https://github.com/Qiskit/qiskit"
    },
    "split_keywords": [
        "qiskit",
        "quantum circuit",
        "quantum computing",
        "quantum programming language",
        "quantum",
        "sdk"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d16173f9b594b69233072e6dd50c27bffd5079b3695600a80da5ad0783b192bb",
                "md5": "165b59c492811bbac6a6f0e1671a099e",
                "sha256": "c78b9488b867f7a121a946db9d453c22e21dab6f00e092defb8010c1a0ec871b"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "165b59c492811bbac6a6f0e1671a099e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5904226,
            "upload_time": "2024-03-07T23:04:13",
            "upload_time_iso_8601": "2024-03-07T23:04:13.136424Z",
            "url": "https://files.pythonhosted.org/packages/d1/61/73f9b594b69233072e6dd50c27bffd5079b3695600a80da5ad0783b192bb/qiskit-1.0.2-cp38-abi3-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "531b598f44891a01589a1adab2d817ef120df1bf6efd9f018cffa253311d629b",
                "md5": "65932524a98a6cab583dcb6c4c134d41",
                "sha256": "a900f04a0c6349a37aaabbf5a0b1be9fe92c19a6a049e3dcf0aaae0e971d79f2"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65932524a98a6cab583dcb6c4c134d41",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4340108,
            "upload_time": "2024-03-07T23:04:16",
            "upload_time_iso_8601": "2024-03-07T23:04:16.532934Z",
            "url": "https://files.pythonhosted.org/packages/53/1b/598f44891a01589a1adab2d817ef120df1bf6efd9f018cffa253311d629b/qiskit-1.0.2-cp38-abi3-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f0507f88a388b73820d80cbe259ebe21ec1b3111f2d699929abf9fa1cca1d21",
                "md5": "f30fe0cdfe61fa1d5d5f4a5e4ac05787",
                "sha256": "cfe7589d0f61a4a575028cc9d3503fe3965e6cf1df58ace4659d49dc9ce11897"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f30fe0cdfe61fa1d5d5f4a5e4ac05787",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4067622,
            "upload_time": "2024-03-07T23:04:19",
            "upload_time_iso_8601": "2024-03-07T23:04:19.439462Z",
            "url": "https://files.pythonhosted.org/packages/8f/05/07f88a388b73820d80cbe259ebe21ec1b3111f2d699929abf9fa1cca1d21/qiskit-1.0.2-cp38-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2c58a3832ae80b919f60a97f8827d41db019e4fc82dd2a2cda79c98931d975b",
                "md5": "3d37e82951a500dbbcd3250b63cd035e",
                "sha256": "baa4051027bd121efba758db0b48bf6f67ffb74c70bea74fc072c4ccd9fac01a"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d37e82951a500dbbcd3250b63cd035e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5358764,
            "upload_time": "2024-03-07T23:14:28",
            "upload_time_iso_8601": "2024-03-07T23:14:28.273395Z",
            "url": "https://files.pythonhosted.org/packages/e2/c5/8a3832ae80b919f60a97f8827d41db019e4fc82dd2a2cda79c98931d975b/qiskit-1.0.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b3a5c96e14b68bab6e3ce9696c6243a43364fbc8b20d6282c8bb99b14190834",
                "md5": "d069300b3eb1f3e84db0eaecf9285594",
                "sha256": "5ca533c878b36bfd53a92641cbf552ce4f48821924b107140dfb6e242eeb9425"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d069300b3eb1f3e84db0eaecf9285594",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5508776,
            "upload_time": "2024-03-07T23:04:21",
            "upload_time_iso_8601": "2024-03-07T23:04:21.731805Z",
            "url": "https://files.pythonhosted.org/packages/4b/3a/5c96e14b68bab6e3ce9696c6243a43364fbc8b20d6282c8bb99b14190834/qiskit-1.0.2-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cca0ab24ab935ca805538e43188be1796d723a98e6081ef5580606cdd6a6dece",
                "md5": "8a865810b3c7f71a6ff1931430ec415e",
                "sha256": "100577d7ee452918e814bcd54f90e3794fdcfdfa32936c1cee2c7fc917485c31"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8a865810b3c7f71a6ff1931430ec415e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5443180,
            "upload_time": "2024-03-07T22:57:30",
            "upload_time_iso_8601": "2024-03-07T22:57:30.958589Z",
            "url": "https://files.pythonhosted.org/packages/cc/a0/ab24ab935ca805538e43188be1796d723a98e6081ef5580606cdd6a6dece/qiskit-1.0.2-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce266f9ae0d73dc4b12035fc1483c41868f2cdc0cc7ddcd55f5724917af1cbba",
                "md5": "faa0cb456381ca8eb0cd9ff79a7e01db",
                "sha256": "186535c0dca89476cbef63420cdb297a8bc73f4444d6c7a49ec9639fb48647c2"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "faa0cb456381ca8eb0cd9ff79a7e01db",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 7070109,
            "upload_time": "2024-03-07T23:51:19",
            "upload_time_iso_8601": "2024-03-07T23:51:19.271264Z",
            "url": "https://files.pythonhosted.org/packages/ce/26/6f9ae0d73dc4b12035fc1483c41868f2cdc0cc7ddcd55f5724917af1cbba/qiskit-1.0.2-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aa51632e574c24befa2783ab15db022112444ea39fdf0ec7be29b8975613071",
                "md5": "ce430b2024a7546e89ecb175b6fcc3b5",
                "sha256": "99f2a8d7ccdc3b7c31ed59e8d83d2da2ca6d2b204d158dd758ad19c9d9c27858"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce430b2024a7546e89ecb175b6fcc3b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5637579,
            "upload_time": "2024-03-07T23:04:24",
            "upload_time_iso_8601": "2024-03-07T23:04:24.930779Z",
            "url": "https://files.pythonhosted.org/packages/7a/a5/1632e574c24befa2783ab15db022112444ea39fdf0ec7be29b8975613071/qiskit-1.0.2-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5aa20777f22c93cde949f6075d63eca024eb087b6e2df669c6eb2f2768a1586",
                "md5": "c308ac1c574463e5c02794b18cba591e",
                "sha256": "bf215feeec065398a611b6d6c8bb7b04131b110fbf68ed0967e841d62fb7cb4f"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "c308ac1c574463e5c02794b18cba591e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3738488,
            "upload_time": "2024-03-07T23:04:27",
            "upload_time_iso_8601": "2024-03-07T23:04:27.112693Z",
            "url": "https://files.pythonhosted.org/packages/f5/aa/20777f22c93cde949f6075d63eca024eb087b6e2df669c6eb2f2768a1586/qiskit-1.0.2-cp38-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c6aca03509e5d689c2e0f21746e9b66568fab45d88f411ca14da897b03181b7",
                "md5": "300fdcb9e0952ec58ae38a3cadc8c287",
                "sha256": "9f3195eb746f59715837cdbfeaf6b2624f7176248b99faa71add1d9e7ce9fe8f"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2-cp38-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "300fdcb9e0952ec58ae38a3cadc8c287",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4092098,
            "upload_time": "2024-03-07T23:04:30",
            "upload_time_iso_8601": "2024-03-07T23:04:30.353334Z",
            "url": "https://files.pythonhosted.org/packages/5c/6a/ca03509e5d689c2e0f21746e9b66568fab45d88f411ca14da897b03181b7/qiskit-1.0.2-cp38-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63ecf2c939f5ab27117558d7aacfd3f84e43ce67385002b88a10142b9f51b6b7",
                "md5": "d0920ec3bff9addca519851cdecdb9c6",
                "sha256": "f0480adb1379a5799dde6571d4f717f58909c24100125b6f6addaf123613aee2"
            },
            "downloads": -1,
            "filename": "qiskit-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "d0920ec3bff9addca519851cdecdb9c6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3372763,
            "upload_time": "2024-03-07T23:06:13",
            "upload_time_iso_8601": "2024-03-07T23:06:13.977078Z",
            "url": "https://files.pythonhosted.org/packages/63/ec/f2c939f5ab27117558d7aacfd3f84e43ce67385002b88a10142b9f51b6b7/qiskit-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-07 23:06:13",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Qiskit",
    "github_project": "qiskit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "rustworkx",
            "specs": [
                [
                    ">=",
                    "0.14.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.17"
                ],
                [
                    "<",
                    "2"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.5"
                ]
            ]
        },
        {
            "name": "sympy",
            "specs": [
                [
                    ">=",
                    "1.3"
                ]
            ]
        },
        {
            "name": "dill",
            "specs": [
                [
                    ">=",
                    "0.3"
                ]
            ]
        },
        {
            "name": "python-dateutil",
            "specs": [
                [
                    ">=",
                    "2.8.0"
                ]
            ]
        },
        {
            "name": "stevedore",
            "specs": [
                [
                    ">=",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "typing-extensions",
            "specs": []
        },
        {
            "name": "symengine",
            "specs": [
                [
                    ">=",
                    "0.11"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "qiskit"
}
        
Elapsed time: 0.19880s