amazon-braket-sdk
An open source library for interacting with quantum computing devices on Amazon Braket
What it is and what it does
Amazon Braket SDK is an open-source Python library that lets you build and run quantum circuits on AWS quantum hardware and simulators. It abstracts the complexity of interacting with quantum devices by providing a high-level API for circuit construction, task submission, and result retrieval. The SDK includes both local simulators for rapid prototyping and access to fully managed AWS simulators and physical quantum processors from providers like Rigetti.
The library depends on boto3 for AWS integration, numpy and sympy for numerical computation, networkx for circuit analysis, and several Amazon-specific packages (amazon-braket-schemas, amazon-braket-default-simulator, oqpy, openqasm3, openpulse) that handle quantum circuit representation and execution. It supports batch execution of multiple circuits in parallel and hybrid jobs that combine classical and quantum computation, with configurable polling timeouts for result retrieval.
Use it for:
- Prototype quantum algorithms locally using the braket_sv simulator before submitting to AWS hardware or managed simulators.
- Run Bell pair and other fundamental quantum circuits on physical quantum computers like Rigetti Cepheus to validate quantum computing concepts.
- Execute batches of independent quantum circuits in parallel on SV1 simulator for faster throughput than sequential submission.
- Build and deploy hybrid quantum-classical jobs that combine quantum circuit execution with classical post-processing via AwsQuantumJob.
- Debug quantum task status and monitor execution on QPUs using built-in logging and polling mechanisms.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides a Python framework to design, simulate, and execute quantum circuits on AWS quantum hardware and simulators through Amazon Braket.
Yes. The package is actively maintained, has no known vulnerabilities, supports current Python versions, and provides the primary interface for accessing Amazon Braket's quantum computing services. Install friction is low and the Apache-2.0 license is permissive. Recommended for anyone working with AWS quantum hardware or needing a quantum circuit framework integrated with AWS infrastructure.
Install
amazon-braket-sdk on PyPI
pip
pip install amazon-braket-sdkuv
uv add amazon-braket-sdkpoetry
poetry add amazon-braket-sdkInstalling amazon-braket-sdk
Before you install
Low install friction with a pure-Python wheel distribution. Active maintenance with recent releases; last commit 2026-08-13. Supports current Python versions (3.11, 3.12, 3.13) and has been in production since 2020-08-13.
License in practice
Apache-2.0 permissive license allows use in most commercial and open-source projects with minimal restrictions; requires license attribution.
Quickstart
pip install amazon-braket-sdk
from braket.aws import AwsDevice
from braket.circuits import Circuit
from braket.devices import Devices
device = AwsDevice(Devices.Amazon.SV1)
bell = Circuit().h(0).cnot(0, 1)
task = device.run(bell, shots=100)
print(task.result().measurement_counts)
Requires Python 3.11 or greater; AWS credentials configured via boto3; IAM permissions for Amazon Braket service access.
Verify before relying
- Whether the local simulator (braket_sv) truly handles circuits up to 25 qubits as stated, or if this depends on specific hardware.
- Performance characteristics and cost implications of running circuits on fully managed simulators versus local execution.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (>=3.11) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 13 — amazon-braket-schemas, amazon-braket-default-simulator, oqpy, backoff, boltons, boto3, cloudpickle, nest-asyncio, networkx, numpy, openpulse, openqasm3, sympy |
| Maintenance | actively maintained — 11 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 141,147/month — #11,249 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: amazon_braket_sdk-1.125.0-py3-none-any.whl
Keywords: Amazon, AWS, Quantum
Tags
More Scientific/Engineering packages
NumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
pandaspandas provides fast, flexible data structures…
permissive · top 100 on PyPI
scipyscipy provides numerical algorithms for…
permissive · top 100 on PyPI
scikit-learnscikit-learn provides a comprehensive Python…
permissive · top 1,000 on PyPI
dilldill extends Python's pickle module to…
permissive · top 1,000 on PyPI
multiprocessMultiprocess is an enhanced fork of Python's…
permissive · top 1,000 on PyPI
amazon-braket-default-simulatorProvides a local quantum circuit simulator for…
permissive · top 15,000 on PyPI
amazon-braket-schemasProvides serialization, deserialization, and…
permissive · top 15,000 on PyPI
cirq-aqtCirq-AQT provides a Cirq integration that lets…
permissive · top 15,000 on PyPI
cirq-coreCirq-core provides the foundational framework…
permissive · top 15,000 on PyPI
qiskit-terraQiskit Terra provides the core SDK for building…
permissive · top 15,000 on PyPI
qiskitQiskit is an open-source SDK for building and…
permissive · top 5,000 on PyPI
qiskit-ionqQiskit IonQ Provider enables submission of…
permissive · top 15,000 on PyPI
cirqCirq is a Python framework for writing,…
permissive · top 15,000 on PyPI
qiskit-aerAer is a high-performance quantum circuit…
permissive · top 5,000 on PyPI
pytketPytket is a Python interface to TKET, a quantum…
permissive · top 15,000 on PyPI