qiskit-aer


Nameqiskit-aer JSON
Version 0.16.1 PyPI version JSON
download
home_pagehttps://github.com/Qiskit/qiskit-aer
SummaryAer - High performance simulators for Qiskit
upload_time2025-02-06 17:38:18
maintainerNone
docs_urlNone
authorAER Development Team
requires_python>=3.7
licenseApache 2.0
keywords qiskit simulator quantum computing backend
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Aer - high performance quantum circuit simulation for Qiskit

[![License](https://img.shields.io/github/license/Qiskit/qiskit-aer.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0)
[![Build](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml)
[![Tests](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml)
[![](https://img.shields.io/github/release/Qiskit/qiskit-aer.svg?style=popout-square)](https://github.com/Qiskit/qiskit-aer/releases)
[![](https://img.shields.io/pypi/dm/qiskit-aer.svg?style=popout-square)](https://pypi.org/project/qiskit-aer/)

**Aer** is a high performance simulator for quantum circuits written in Qiskit, that includes realistic noise models.

## Installation

We encourage installing Aer via the pip tool (a python package manager):

```bash
pip install qiskit-aer
```

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

To install from source, follow the instructions in the [contribution guidelines](CONTRIBUTING.md).

## Installing GPU support

In order to install and run the GPU supported simulators on Linux, you need CUDA® 11.2 or newer previously installed.
CUDA® itself would require a set of specific GPU drivers. Please follow CUDA® installation procedure in the NVIDIA® [web](https://www.nvidia.com/drivers).

If you want to install our GPU supported simulators, you have to install this other package:

```bash
pip install qiskit-aer-gpu
```

The package above is for CUDA&reg 12, so if your system has CUDA® 11 installed, install separate package:
```bash
pip install qiskit-aer-gpu-cu11
```

This will overwrite your current `qiskit-aer` package installation giving you
the same functionality found in the canonical `qiskit-aer` package, plus the
ability to run the GPU supported simulators: statevector, density matrix, and unitary.

**Note**: This package is only available on x86_64 Linux. For other platforms
that have CUDA support, you will have to build from source. You can refer to
the [contributing guide](CONTRIBUTING.md#building-with-gpu-support)
for instructions on doing this.

## Simulating your first Qiskit circuit with Aer
Now that you have Aer installed, you can start simulating quantum circuits using primitives and noise models. Here is a basic example:

```
$ python
```

```python
from qiskit import transpile
from qiskit.circuit.library import RealAmplitudes
from qiskit.quantum_info import SparsePauliOp
from qiskit_aer import AerSimulator

sim = AerSimulator()
# --------------------------
# Simulating using estimator
#---------------------------
from qiskit_aer.primitives import EstimatorV2

psi1 = transpile(RealAmplitudes(num_qubits=2, reps=2), sim, optimization_level=0)
psi2 = transpile(RealAmplitudes(num_qubits=2, reps=3), sim, optimization_level=0)

H1 = SparsePauliOp.from_list([("II", 1), ("IZ", 2), ("XI", 3)])
H2 = SparsePauliOp.from_list([("IZ", 1)])
H3 = SparsePauliOp.from_list([("ZI", 1), ("ZZ", 1)])

theta1 = [0, 1, 1, 2, 3, 5]
theta2 = [0, 1, 1, 2, 3, 5, 8, 13]
theta3 = [1, 2, 3, 4, 5, 6]

estimator = EstimatorV2()

# calculate [ [<psi1(theta1)|H1|psi1(theta1)>,
#              <psi1(theta3)|H3|psi1(theta3)>],
#             [<psi2(theta2)|H2|psi2(theta2)>] ]
job = estimator.run(
    [
        (psi1, [H1, H3], [theta1, theta3]),
        (psi2, H2, theta2)
    ],
    precision=0.01
)
result = job.result()
print(f"expectation values : psi1 = {result[0].data.evs}, psi2 = {result[1].data.evs}")

# --------------------------
# Simulating using sampler
# --------------------------
from qiskit_aer.primitives import SamplerV2
from qiskit import QuantumCircuit

# create a Bell circuit
bell = QuantumCircuit(2)
bell.h(0)
bell.cx(0, 1)
bell.measure_all()

# create two parameterized circuits
pqc = RealAmplitudes(num_qubits=2, reps=2)
pqc.measure_all()
pqc = transpile(pqc, sim, optimization_level=0)
pqc2 = RealAmplitudes(num_qubits=2, reps=3)
pqc2.measure_all()
pqc2 = transpile(pqc2, sim, optimization_level=0)

theta1 = [0, 1, 1, 2, 3, 5]
theta2 = [0, 1, 2, 3, 4, 5, 6, 7]

# initialization of the sampler
sampler = SamplerV2()

# collect 128 shots from the Bell circuit
job = sampler.run([bell], shots=128)
job_result = job.result()
print(f"counts for Bell circuit : {job_result[0].data.meas.get_counts()}")
 
# run a sampler job on the parameterized circuits
job2 = sampler.run([(pqc, theta1), (pqc2, theta2)])
job_result = job2.result()
print(f"counts for parameterized circuit : {job_result[0].data.meas.get_counts()}")

# --------------------------------------------------
# Simulating with noise model from actual hardware
# --------------------------------------------------
from qiskit_ibm_runtime import QiskitRuntimeService
provider = QiskitRuntimeService(channel='ibm_quantum', token="set your own token here")
backend = provider.get_backend("ibm_kyoto")

# create sampler from the actual backend
sampler = SamplerV2.from_backend(backend)

# run a sampler job on the parameterized circuits with noise model of the actual hardware
bell_t = transpile(bell, AerSimulator(basis_gates=["ecr", "id", "rz", "sx"]), optimization_level=0)
job3 = sampler.run([bell_t], shots=128)
job_result = job3.result()
print(f"counts for Bell circuit w/noise: {job_result[0].data.meas.get_counts()}")
```

## Contribution Guidelines

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

We use [GitHub issues](https://github.com/Qiskit/qiskit-aer/issues) for tracking requests and bugs. Please use our [slack](https://qiskit.slack.com) for discussion and simple questions. To join our Slack community use the [link](https://qiskit.slack.com/join/shared_invite/zt-fybmq791-hYRopcSH6YetxycNPXgv~A#/). For questions that are more suited for a forum, we use the Qiskit tag in the [Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit).

## Next Steps

Now you're set up and ready to check out some of the other examples from the [Aer documentation](https://qiskit.github.io/qiskit-aer/).

## Authors and Citation

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

## License

[Apache License 2.0](LICENSE.txt)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Qiskit/qiskit-aer",
    "name": "qiskit-aer",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "qiskit, simulator, quantum computing, backend",
    "author": "AER Development Team",
    "author_email": "qiskit@us.ibm.com",
    "download_url": "https://files.pythonhosted.org/packages/83/02/4ebc2bc5afdc0e41815e78cbc026e2b4eaf118c7510e4ccc42b4567d2860/qiskit_aer-0.16.1.tar.gz",
    "platform": null,
    "description": "# Aer - high performance quantum circuit simulation for Qiskit\n\n[![License](https://img.shields.io/github/license/Qiskit/qiskit-aer.svg?style=popout-square)](https://opensource.org/licenses/Apache-2.0)\n[![Build](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/build.yml)\n[![Tests](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/Qiskit/qiskit-aer/actions/workflows/tests.yml)\n[![](https://img.shields.io/github/release/Qiskit/qiskit-aer.svg?style=popout-square)](https://github.com/Qiskit/qiskit-aer/releases)\n[![](https://img.shields.io/pypi/dm/qiskit-aer.svg?style=popout-square)](https://pypi.org/project/qiskit-aer/)\n\n**Aer** is a high performance simulator for quantum circuits written in Qiskit, that includes realistic noise models.\n\n## Installation\n\nWe encourage installing Aer via the pip tool (a python package manager):\n\n```bash\npip install qiskit-aer\n```\n\nPip will handle all dependencies automatically for us, and you will always install the latest (and well-tested) version.\n\nTo install from source, follow the instructions in the [contribution guidelines](CONTRIBUTING.md).\n\n## Installing GPU support\n\nIn order to install and run the GPU supported simulators on Linux, you need CUDA&reg; 11.2 or newer previously installed.\nCUDA&reg; itself would require a set of specific GPU drivers. Please follow CUDA&reg; installation procedure in the NVIDIA&reg; [web](https://www.nvidia.com/drivers).\n\nIf you want to install our GPU supported simulators, you have to install this other package:\n\n```bash\npip install qiskit-aer-gpu\n```\n\nThe package above is for CUDA&reg 12, so if your system has CUDA&reg; 11 installed, install separate package:\n```bash\npip install qiskit-aer-gpu-cu11\n```\n\nThis will overwrite your current `qiskit-aer` package installation giving you\nthe same functionality found in the canonical `qiskit-aer` package, plus the\nability to run the GPU supported simulators: statevector, density matrix, and unitary.\n\n**Note**: This package is only available on x86_64 Linux. For other platforms\nthat have CUDA support, you will have to build from source. You can refer to\nthe [contributing guide](CONTRIBUTING.md#building-with-gpu-support)\nfor instructions on doing this.\n\n## Simulating your first Qiskit circuit with Aer\nNow that you have Aer installed, you can start simulating quantum circuits using primitives and noise models. Here is a basic example:\n\n```\n$ python\n```\n\n```python\nfrom qiskit import transpile\nfrom qiskit.circuit.library import RealAmplitudes\nfrom qiskit.quantum_info import SparsePauliOp\nfrom qiskit_aer import AerSimulator\n\nsim = AerSimulator()\n# --------------------------\n# Simulating using estimator\n#---------------------------\nfrom qiskit_aer.primitives import EstimatorV2\n\npsi1 = transpile(RealAmplitudes(num_qubits=2, reps=2), sim, optimization_level=0)\npsi2 = transpile(RealAmplitudes(num_qubits=2, reps=3), sim, optimization_level=0)\n\nH1 = SparsePauliOp.from_list([(\"II\", 1), (\"IZ\", 2), (\"XI\", 3)])\nH2 = SparsePauliOp.from_list([(\"IZ\", 1)])\nH3 = SparsePauliOp.from_list([(\"ZI\", 1), (\"ZZ\", 1)])\n\ntheta1 = [0, 1, 1, 2, 3, 5]\ntheta2 = [0, 1, 1, 2, 3, 5, 8, 13]\ntheta3 = [1, 2, 3, 4, 5, 6]\n\nestimator = EstimatorV2()\n\n# calculate [ [<psi1(theta1)|H1|psi1(theta1)>,\n#              <psi1(theta3)|H3|psi1(theta3)>],\n#             [<psi2(theta2)|H2|psi2(theta2)>] ]\njob = estimator.run(\n    [\n        (psi1, [H1, H3], [theta1, theta3]),\n        (psi2, H2, theta2)\n    ],\n    precision=0.01\n)\nresult = job.result()\nprint(f\"expectation values : psi1 = {result[0].data.evs}, psi2 = {result[1].data.evs}\")\n\n# --------------------------\n# Simulating using sampler\n# --------------------------\nfrom qiskit_aer.primitives import SamplerV2\nfrom qiskit import QuantumCircuit\n\n# create a Bell circuit\nbell = QuantumCircuit(2)\nbell.h(0)\nbell.cx(0, 1)\nbell.measure_all()\n\n# create two parameterized circuits\npqc = RealAmplitudes(num_qubits=2, reps=2)\npqc.measure_all()\npqc = transpile(pqc, sim, optimization_level=0)\npqc2 = RealAmplitudes(num_qubits=2, reps=3)\npqc2.measure_all()\npqc2 = transpile(pqc2, sim, optimization_level=0)\n\ntheta1 = [0, 1, 1, 2, 3, 5]\ntheta2 = [0, 1, 2, 3, 4, 5, 6, 7]\n\n# initialization of the sampler\nsampler = SamplerV2()\n\n# collect 128 shots from the Bell circuit\njob = sampler.run([bell], shots=128)\njob_result = job.result()\nprint(f\"counts for Bell circuit : {job_result[0].data.meas.get_counts()}\")\n \n# run a sampler job on the parameterized circuits\njob2 = sampler.run([(pqc, theta1), (pqc2, theta2)])\njob_result = job2.result()\nprint(f\"counts for parameterized circuit : {job_result[0].data.meas.get_counts()}\")\n\n# --------------------------------------------------\n# Simulating with noise model from actual hardware\n# --------------------------------------------------\nfrom qiskit_ibm_runtime import QiskitRuntimeService\nprovider = QiskitRuntimeService(channel='ibm_quantum', token=\"set your own token here\")\nbackend = provider.get_backend(\"ibm_kyoto\")\n\n# create sampler from the actual backend\nsampler = SamplerV2.from_backend(backend)\n\n# run a sampler job on the parameterized circuits with noise model of the actual hardware\nbell_t = transpile(bell, AerSimulator(basis_gates=[\"ecr\", \"id\", \"rz\", \"sx\"]), optimization_level=0)\njob3 = sampler.run([bell_t], shots=128)\njob_result = job3.result()\nprint(f\"counts for Bell circuit w/noise: {job_result[0].data.meas.get_counts()}\")\n```\n\n## Contribution Guidelines\n\nIf you'd like to contribute to Aer, please take a look at our\n[contribution guidelines](CONTRIBUTING.md). This project adheres to Qiskit's [code of conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.\n\nWe use [GitHub issues](https://github.com/Qiskit/qiskit-aer/issues) for tracking requests and bugs. Please use our [slack](https://qiskit.slack.com) for discussion and simple questions. To join our Slack community use the [link](https://qiskit.slack.com/join/shared_invite/zt-fybmq791-hYRopcSH6YetxycNPXgv~A#/). For questions that are more suited for a forum, we use the Qiskit tag in the [Stack Exchange](https://quantumcomputing.stackexchange.com/questions/tagged/qiskit).\n\n## Next Steps\n\nNow you're set up and ready to check out some of the other examples from the [Aer documentation](https://qiskit.github.io/qiskit-aer/).\n\n## Authors and Citation\n\nAer is the work of [many people](https://github.com/Qiskit/qiskit-aer/graphs/contributors) who contribute to the project at different levels.\nIf you use Qiskit, please cite as per the included [BibTeX file](https://github.com/Qiskit/qiskit/blob/main/CITATION.bib).\n\n## License\n\n[Apache License 2.0](LICENSE.txt)\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Aer - High performance simulators for Qiskit",
    "version": "0.16.1",
    "project_urls": {
        "Homepage": "https://github.com/Qiskit/qiskit-aer"
    },
    "split_keywords": [
        "qiskit",
        " simulator",
        " quantum computing",
        " backend"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b69d6d297c895d51bf7cb47ad0c2807d5d883a4fb975d79a1a09aec2a119b68c",
                "md5": "01eb23954d03f99c4166fb9b8b401dc4",
                "sha256": "f76d8fcde50b46b23a9b5c261b1234e41f4510d9fc9e41cd92c4173cd4d18752"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01eb23954d03f99c4166fb9b8b401dc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2475179,
            "upload_time": "2025-02-06T17:36:25",
            "upload_time_iso_8601": "2025-02-06T17:36:25.926869Z",
            "url": "https://files.pythonhosted.org/packages/b6/9d/6d297c895d51bf7cb47ad0c2807d5d883a4fb975d79a1a09aec2a119b68c/qiskit_aer-0.16.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29749d6e4e47f5352de6f6fb0addeb8b305c73b56ab1c1fb92e73aa9b98522f1",
                "md5": "cf945c6cb1f11e5e87596f1a95b37a31",
                "sha256": "2a84d7790b7f97a6a00927c900a302701bfcb41dff4dfe82f6d1812f8fe27656"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cf945c6cb1f11e5e87596f1a95b37a31",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2161874,
            "upload_time": "2025-02-06T17:36:27",
            "upload_time_iso_8601": "2025-02-06T17:36:27.967355Z",
            "url": "https://files.pythonhosted.org/packages/29/74/9d6e4e47f5352de6f6fb0addeb8b305c73b56ab1c1fb92e73aa9b98522f1/qiskit_aer-0.16.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42876557ec9a8f459a3d981f269589fafe90f8e5727d2aeda8089861f27d07f1",
                "md5": "53d64a02917dcac4adbfc205f24831cf",
                "sha256": "621263fa1f48aa586557991cef5da3b2cb9c9689f6b35022ea4ee3eadf98d131"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "53d64a02917dcac4adbfc205f24831cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7938269,
            "upload_time": "2025-02-06T17:36:29",
            "upload_time_iso_8601": "2025-02-06T17:36:29.969561Z",
            "url": "https://files.pythonhosted.org/packages/42/87/6557ec9a8f459a3d981f269589fafe90f8e5727d2aeda8089861f27d07f1/qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c0b576a21923f9b1286cff449b65289a2c9c1628a030cf31d6da4a3279a9163",
                "md5": "f7bdd4365e41d3772299c71e86bc6072",
                "sha256": "f4633b95ed9809c048fd1d27ba9b8a2da2bdf12a483c34a8e15ad07da570faf0"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7bdd4365e41d3772299c71e86bc6072",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 12349215,
            "upload_time": "2025-02-06T17:36:33",
            "upload_time_iso_8601": "2025-02-06T17:36:33.279104Z",
            "url": "https://files.pythonhosted.org/packages/2c/0b/576a21923f9b1286cff449b65289a2c9c1628a030cf31d6da4a3279a9163/qiskit_aer-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38716e1aff51e06275d1bb672ce5b890d07c66330e80f3fb103665d8eb3c5061",
                "md5": "ba4ce66cdd8896386c854841aec103fa",
                "sha256": "ba2f3bb1c4aa2b47a4275e23d1ba872fb100fa3e41a6442fb442c254f94cac5d"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ba4ce66cdd8896386c854841aec103fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6898087,
            "upload_time": "2025-02-06T17:36:38",
            "upload_time_iso_8601": "2025-02-06T17:36:38.934936Z",
            "url": "https://files.pythonhosted.org/packages/38/71/6e1aff51e06275d1bb672ce5b890d07c66330e80f3fb103665d8eb3c5061/qiskit_aer-0.16.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "701324dc1f29c6fb1c81ef7fd46c440b4ac1b4e7223d193797039ba266798bb3",
                "md5": "893c66187e3605251abd2125e26ad852",
                "sha256": "a8a71c08221c516796e430fab452b7e7b7d0409250ab283c80c478a4b15e9cf0"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "893c66187e3605251abd2125e26ad852",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 9520456,
            "upload_time": "2025-02-06T17:36:43",
            "upload_time_iso_8601": "2025-02-06T17:36:43.089625Z",
            "url": "https://files.pythonhosted.org/packages/70/13/24dc1f29c6fb1c81ef7fd46c440b4ac1b4e7223d193797039ba266798bb3/qiskit_aer-0.16.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6a32d7fc11f37977e1ddd9776e95ada88af897422f315b5b3c763703ad206dd",
                "md5": "bc2c41de65629666eb220dd03d5627ba",
                "sha256": "a16c1ac16d129cffb4188147c1327a58119161f592bc44f4e5f74bacefe6dc4e"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc2c41de65629666eb220dd03d5627ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2476878,
            "upload_time": "2025-02-06T17:36:45",
            "upload_time_iso_8601": "2025-02-06T17:36:45.339023Z",
            "url": "https://files.pythonhosted.org/packages/d6/a3/2d7fc11f37977e1ddd9776e95ada88af897422f315b5b3c763703ad206dd/qiskit_aer-0.16.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "def3a8ec687aa138441c1970fc274d09eb2d19132ced41b4ce02ed444c91a7b6",
                "md5": "822f74058f7a9e83dc251b21323b6217",
                "sha256": "cb77963775c70d29c4772275e485bf947f95f63ce30edbe09e3467600bae0752"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "822f74058f7a9e83dc251b21323b6217",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2163423,
            "upload_time": "2025-02-06T17:36:47",
            "upload_time_iso_8601": "2025-02-06T17:36:47.613258Z",
            "url": "https://files.pythonhosted.org/packages/de/f3/a8ec687aa138441c1970fc274d09eb2d19132ced41b4ce02ed444c91a7b6/qiskit_aer-0.16.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4c4b639e06bf90ee905fd8981aaebee7da5638e16b0ef60d2f7599287f518ff",
                "md5": "8313454ba549cc12c15c6ccce3223b47",
                "sha256": "b8e48505e64f29a913088a966935567429f115cf9ef91a58c2ea72beca286982"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8313454ba549cc12c15c6ccce3223b47",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7941180,
            "upload_time": "2025-02-06T17:36:50",
            "upload_time_iso_8601": "2025-02-06T17:36:50.662306Z",
            "url": "https://files.pythonhosted.org/packages/c4/c4/b639e06bf90ee905fd8981aaebee7da5638e16b0ef60d2f7599287f518ff/qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00e33c1525c65ac9c4a47656ed63667c9dfd51c3ce0f35a6e3135cfadcbeb178",
                "md5": "9cefa0fcca25403d7c92518f78dc89da",
                "sha256": "80b7c02c3d6fd48e6efa22b76c8599860bcc284eda2e74ab286abf60a1603e76"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9cefa0fcca25403d7c92518f78dc89da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 12353835,
            "upload_time": "2025-02-06T17:36:53",
            "upload_time_iso_8601": "2025-02-06T17:36:53.397780Z",
            "url": "https://files.pythonhosted.org/packages/00/e3/3c1525c65ac9c4a47656ed63667c9dfd51c3ce0f35a6e3135cfadcbeb178/qiskit_aer-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ebc9c1535d39cd97d07720a54789d5faa50e414fad3399f59138d66bf9ef2f66",
                "md5": "ca17a019b01585d0d7bd00343c46af55",
                "sha256": "b1c18c151d87385a702459e92fd19f4d1f0c95e582ee6519d070ca8231650d2b"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "ca17a019b01585d0d7bd00343c46af55",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6898499,
            "upload_time": "2025-02-06T17:36:56",
            "upload_time_iso_8601": "2025-02-06T17:36:56.025447Z",
            "url": "https://files.pythonhosted.org/packages/eb/c9/c1535d39cd97d07720a54789d5faa50e414fad3399f59138d66bf9ef2f66/qiskit_aer-0.16.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8cfacbdca1405655d3381d7e2c02cd7ad39704eeb3bf3e0e7d25a2235308c982",
                "md5": "464a1db7aacbb217d4af48b99fda66f7",
                "sha256": "966097010edf1e77f605d06100cabb013396c1f2c1f6d457f55334fb3b2cdfd9"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "464a1db7aacbb217d4af48b99fda66f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 9521229,
            "upload_time": "2025-02-06T17:36:59",
            "upload_time_iso_8601": "2025-02-06T17:36:59.077684Z",
            "url": "https://files.pythonhosted.org/packages/8c/fa/cbdca1405655d3381d7e2c02cd7ad39704eeb3bf3e0e7d25a2235308c982/qiskit_aer-0.16.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a451f8191450439943658b83dfe89a2e0f9452dd264fe47c238dd963e0e4ef46",
                "md5": "fb82609f51c4d3219d5d09f33ecf27bf",
                "sha256": "8783c200170789f6804ce323d696febe80293ed6dd9f748211803dbcab743aff"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb82609f51c4d3219d5d09f33ecf27bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2477385,
            "upload_time": "2025-02-06T17:37:02",
            "upload_time_iso_8601": "2025-02-06T17:37:02.311949Z",
            "url": "https://files.pythonhosted.org/packages/a4/51/f8191450439943658b83dfe89a2e0f9452dd264fe47c238dd963e0e4ef46/qiskit_aer-0.16.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "343f0db3d8eb873cf29f6987946f1de97f10f75e8b10ca3d8b25c20ba00aa167",
                "md5": "8a787d4941bc4c7929cd00d2cbd166c9",
                "sha256": "1d0d1eb71c7e276af4e7a4f98cd416559e34b3d3103a0d459c2c6a94bff42179"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8a787d4941bc4c7929cd00d2cbd166c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2164811,
            "upload_time": "2025-02-06T17:37:04",
            "upload_time_iso_8601": "2025-02-06T17:37:04.802647Z",
            "url": "https://files.pythonhosted.org/packages/34/3f/0db3d8eb873cf29f6987946f1de97f10f75e8b10ca3d8b25c20ba00aa167/qiskit_aer-0.16.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e7ce7b721feecbcb16713176a61322e9dff7e69b65ac26aef102d2a8a471147",
                "md5": "04df70a96d8eb9b6b106a09c258c83ae",
                "sha256": "4d0c853b226664238aafb57f0111aa795e42732dcf1ca973b48a7cd0bb317596"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "04df70a96d8eb9b6b106a09c258c83ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 7944441,
            "upload_time": "2025-02-06T17:37:06",
            "upload_time_iso_8601": "2025-02-06T17:37:06.748368Z",
            "url": "https://files.pythonhosted.org/packages/0e/7c/e7b721feecbcb16713176a61322e9dff7e69b65ac26aef102d2a8a471147/qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da37481851bb36837f2611dbf51df519ab8f4974adeff570944ba701b9b1a228",
                "md5": "b0de6b09852261fda944cd3a7d3dea04",
                "sha256": "ffa2f27730ed2dd471ed73ade8f97a90c1b6f681f3d5a8e4d0c51dce855b353d"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0de6b09852261fda944cd3a7d3dea04",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 12352951,
            "upload_time": "2025-02-06T17:37:09",
            "upload_time_iso_8601": "2025-02-06T17:37:09.400455Z",
            "url": "https://files.pythonhosted.org/packages/da/37/481851bb36837f2611dbf51df519ab8f4974adeff570944ba701b9b1a228/qiskit_aer-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbe809332835c4d4716fe0c41fd26c5607233bab30f8ff952f9c4e2c95820688",
                "md5": "2015cd98161836109f39a45299a53204",
                "sha256": "ccc325acd4daa302293dab950850f5d6ff00404c24e47aed4134967e472c31c2"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "2015cd98161836109f39a45299a53204",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6899525,
            "upload_time": "2025-02-06T17:37:12",
            "upload_time_iso_8601": "2025-02-06T17:37:12.448473Z",
            "url": "https://files.pythonhosted.org/packages/fb/e8/09332835c4d4716fe0c41fd26c5607233bab30f8ff952f9c4e2c95820688/qiskit_aer-0.16.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52e3a055627842c09d06a9f8f104fdbc1b8feee8a3b5b0d36efc1f096e396bb1",
                "md5": "5191e7a2beb28d260deb0b0dca5c2a4a",
                "sha256": "de1709d99a800b99e9fa0f49a6990cce7bdb6ce32bf1655049487b7754646196"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5191e7a2beb28d260deb0b0dca5c2a4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 9522881,
            "upload_time": "2025-02-06T17:37:15",
            "upload_time_iso_8601": "2025-02-06T17:37:15.800169Z",
            "url": "https://files.pythonhosted.org/packages/52/e3/a055627842c09d06a9f8f104fdbc1b8feee8a3b5b0d36efc1f096e396bb1/qiskit_aer-0.16.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "970fcdea0383cb6613bfd79b1bdd2b11617526ffa3a19d2e386047d510b17ae1",
                "md5": "a3b3c2ccacfeecfabed6b1a5bdff647e",
                "sha256": "881f79961d77ce101f6d2c18ed5b2f070ce63e6b01ee9b36b96bf2dc66acfe1b"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3b3c2ccacfeecfabed6b1a5bdff647e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 2477318,
            "upload_time": "2025-02-06T17:37:18",
            "upload_time_iso_8601": "2025-02-06T17:37:18.514923Z",
            "url": "https://files.pythonhosted.org/packages/97/0f/cdea0383cb6613bfd79b1bdd2b11617526ffa3a19d2e386047d510b17ae1/qiskit_aer-0.16.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "794930e95fb22cd6d351af438b01c96e61415b26b2ed9cf19e77329e29430191",
                "md5": "a74e31ff34076846d3b8dc01346261e2",
                "sha256": "86ea3c09fa14dbffafac29265ff161c89d0c72616822ec8c117012801fd76cff"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a74e31ff34076846d3b8dc01346261e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 2164846,
            "upload_time": "2025-02-06T17:37:20",
            "upload_time_iso_8601": "2025-02-06T17:37:20.108748Z",
            "url": "https://files.pythonhosted.org/packages/79/49/30e95fb22cd6d351af438b01c96e61415b26b2ed9cf19e77329e29430191/qiskit_aer-0.16.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e0f8b87a56db7ad5f550d5c2776b4f91e0960045a391b7b3e6e59d871622cea",
                "md5": "ff8bfc03f24508798cada3590b0950ff",
                "sha256": "2d94b87a7c0753826d0f0376d7dd7377ee2cc45994b4b88dd2f1747c8a0aa99a"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ff8bfc03f24508798cada3590b0950ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 7944628,
            "upload_time": "2025-02-06T17:37:22",
            "upload_time_iso_8601": "2025-02-06T17:37:22.639481Z",
            "url": "https://files.pythonhosted.org/packages/2e/0f/8b87a56db7ad5f550d5c2776b4f91e0960045a391b7b3e6e59d871622cea/qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53d06e25e6b8d89e939d24b5d3da69a33e42e5e7ddbc69b6d30fb9dee4a51b60",
                "md5": "d577ce858865423b22834ef111a6b138",
                "sha256": "301098b862d33f8176421d173d6903e22ec2339b0b1919c980e4f55aa7874298"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d577ce858865423b22834ef111a6b138",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 12352272,
            "upload_time": "2025-02-06T17:37:25",
            "upload_time_iso_8601": "2025-02-06T17:37:25.014049Z",
            "url": "https://files.pythonhosted.org/packages/53/d0/6e25e6b8d89e939d24b5d3da69a33e42e5e7ddbc69b6d30fb9dee4a51b60/qiskit_aer-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8b11fb6fd20294c05f5d9b77e9fad07193541fc30324b902180bc2e04f5c328",
                "md5": "619ee0657e31dea5901ebca3c7d8e6b4",
                "sha256": "b9eb2251fd855696fbb2e733a3a2bf50b058e71b97588ca24e4242acac1dc39f"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "619ee0657e31dea5901ebca3c7d8e6b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 6899722,
            "upload_time": "2025-02-06T17:37:27",
            "upload_time_iso_8601": "2025-02-06T17:37:27.750157Z",
            "url": "https://files.pythonhosted.org/packages/e8/b1/1fb6fd20294c05f5d9b77e9fad07193541fc30324b902180bc2e04f5c328/qiskit_aer-0.16.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cc0fd316df941c9e568db58fd6fdab7d4b4bdc39dc76504b4ec33cb07e761b9",
                "md5": "1385c20f2c4e04e6073a3b8c8ce52e61",
                "sha256": "9f893c633513f1f0c9137ba5f642ee7e2ab38513e25c06b0967f5499871ff6a6"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1385c20f2c4e04e6073a3b8c8ce52e61",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 9523027,
            "upload_time": "2025-02-06T17:37:29",
            "upload_time_iso_8601": "2025-02-06T17:37:29.988273Z",
            "url": "https://files.pythonhosted.org/packages/4c/c0/fd316df941c9e568db58fd6fdab7d4b4bdc39dc76504b4ec33cb07e761b9/qiskit_aer-0.16.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f0810815f647b3f985a3fb1f3e3b53a95365a3134238cf26c83a8a0733fdea7",
                "md5": "58fcdd2bab55731dc4cf284ef91138eb",
                "sha256": "34418878d18b654a0c6a03477aa34d6d13dcd18774e3c24fa25443e3aa30ad26"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58fcdd2bab55731dc4cf284ef91138eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2475176,
            "upload_time": "2025-02-06T17:37:32",
            "upload_time_iso_8601": "2025-02-06T17:37:32.167315Z",
            "url": "https://files.pythonhosted.org/packages/7f/08/10815f647b3f985a3fb1f3e3b53a95365a3134238cf26c83a8a0733fdea7/qiskit_aer-0.16.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67e56ed56907c98a4ca617d872c483973895912e4e1d07d8802f88efc1bfdb1c",
                "md5": "4a331c9312e8debd1cf5489fe8b5171e",
                "sha256": "1c553e90d83586e0ef240b930eed72dfeacc139d93d4565c5863ef139de5ba57"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a331c9312e8debd1cf5489fe8b5171e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2162132,
            "upload_time": "2025-02-06T17:37:33",
            "upload_time_iso_8601": "2025-02-06T17:37:33.940717Z",
            "url": "https://files.pythonhosted.org/packages/67/e5/6ed56907c98a4ca617d872c483973895912e4e1d07d8802f88efc1bfdb1c/qiskit_aer-0.16.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0924528a4264c999f0e65709d044e9a8b82a71d092fa9c4d94b101a2da58193",
                "md5": "de51b6b92be776cc56456c89926fcdc3",
                "sha256": "d31c8d2be2dd6bc1b10b2ae3df28a8f33b4eab6c267aada9e28f01c204911dba"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "de51b6b92be776cc56456c89926fcdc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7939965,
            "upload_time": "2025-02-06T17:37:36",
            "upload_time_iso_8601": "2025-02-06T17:37:36.924564Z",
            "url": "https://files.pythonhosted.org/packages/e0/92/4528a4264c999f0e65709d044e9a8b82a71d092fa9c4d94b101a2da58193/qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51ba913145b0e27818864a9b9dfdcf6acf35c7051ce08c0f22c54c2a220353a8",
                "md5": "578aac01eb878f5f0663f679d55a90ff",
                "sha256": "274c6818b490a074e24135c19cf4a56d821b87622d93131e0c9c44846e380b5d"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "578aac01eb878f5f0663f679d55a90ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 12352926,
            "upload_time": "2025-02-06T17:37:39",
            "upload_time_iso_8601": "2025-02-06T17:37:39.390601Z",
            "url": "https://files.pythonhosted.org/packages/51/ba/913145b0e27818864a9b9dfdcf6acf35c7051ce08c0f22c54c2a220353a8/qiskit_aer-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96f34aeb1547b3d7f4bd3c5f9d5c80531e5582bfd654fd5129358f2b4faf2938",
                "md5": "a39b698663ad6cdd700c6cc586635155",
                "sha256": "3a51e85b41f635cff2289d497bec02ab436e9e87725894802de10bb976b66eb3"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "a39b698663ad6cdd700c6cc586635155",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6898097,
            "upload_time": "2025-02-06T17:37:43",
            "upload_time_iso_8601": "2025-02-06T17:37:43.058443Z",
            "url": "https://files.pythonhosted.org/packages/96/f3/4aeb1547b3d7f4bd3c5f9d5c80531e5582bfd654fd5129358f2b4faf2938/qiskit_aer-0.16.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d98269eb3976bc46665b830eb38be5040b296411a272ec0db93b3ef51933d889",
                "md5": "040727814ec07c9ecb0de38d6c386c0f",
                "sha256": "db397e8e5eb20ec3e080b64c03b897297b6bb8130fac7f06acfdd4ca81638dc4"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "040727814ec07c9ecb0de38d6c386c0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 9507383,
            "upload_time": "2025-02-06T17:37:45",
            "upload_time_iso_8601": "2025-02-06T17:37:45.609992Z",
            "url": "https://files.pythonhosted.org/packages/d9/82/69eb3976bc46665b830eb38be5040b296411a272ec0db93b3ef51933d889/qiskit_aer-0.16.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83024ebc2bc5afdc0e41815e78cbc026e2b4eaf118c7510e4ccc42b4567d2860",
                "md5": "f8cead98fe13af8e4afc103df2ede8a9",
                "sha256": "cf58dd8b32d86fc78153ebd5eebdd2ffe8a40b07105cf321b49375b0ccbd6275"
            },
            "downloads": -1,
            "filename": "qiskit_aer-0.16.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f8cead98fe13af8e4afc103df2ede8a9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6550660,
            "upload_time": "2025-02-06T17:38:18",
            "upload_time_iso_8601": "2025-02-06T17:38:18.841822Z",
            "url": "https://files.pythonhosted.org/packages/83/02/4ebc2bc5afdc0e41815e78cbc026e2b4eaf118c7510e4ccc42b4567d2860/qiskit_aer-0.16.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-06 17:38:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Qiskit",
    "github_project": "qiskit-aer",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "qiskit-aer"
}
        
Elapsed time: 1.75413s