skillfed

amazon-braket-sdk

An open source library for interacting with quantum computing devices on Amazon Braket

amazon-braket-sdk v1.125.0 141.1K downloads/30d#11,249 on PyPI373
Permissive license Apache-2.0 Active released

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-sdk

uv

uv add amazon-braket-sdk

poetry

poetry add amazon-braket-sdk

Installing 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

Development Status :: 5 - Production/StableIntended Audience :: DevelopersIntended Audience :: EducationIntended Audience :: Science/ResearchNatural Language :: EnglishProgramming Language :: PythonProgramming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13

Tags

quantum circuit execution AWSquantum computing SDKbraket quantum simulatorquantum algorithm frameworkAWS quantum hardware interfacequantum circuit builderquantum task submission
quantum-computingaws-integrationcircuit-simulation

More Scientific/Engineering packages