Metadata-Version: 2.4
Name: cirq_scaleway
Version: 0.1.15
Summary: A Cirq package to connect to Scaleway Quantum as a Service
Author: The Scaleway Developers
Author-email: vmacheret@scaleway.com
License: Apache 2
Project-URL: Documentation, https://www.scaleway.com/en/quantum-as-a-service/
Project-URL: Source, https://github.com/scaleway/cirq-scaleway
Project-URL: Tracker, https://github.com/scaleway/cirq-scaleway/issues
Requires-Python: >=3.12.0
License-File: LICENSE
Requires-Dist: pandas==2.3.1
Requires-Dist: cirq-core>=1.3.0
Requires-Dist: scaleway-qaas-client>=0.1.16
Requires-Dist: qio~=0.2.1
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

.. image:: https://www-uploads.scaleway.com/About_Generic_Hero_c4dc10a073.webp
  :target: https://github.com/quantumlib/cirq/
  :alt: cirq-scaleway
  :width: 500px

`Cirq <https://quantumai.google/cirq>`__ is a Python library for writing, manipulating, and optimizing quantum
circuits and running them against quantum computers and simulators.

This module is **cirq-scaleway**, which provides everything you'll need to run Cirq quantum algorithms on Scaleway Quantum as a Service (QaaS).

`Official QaaS web page <https://labs.scaleway.com/en/qaas/>`__

Documentation
-------------

To get started with Scaleway Quantum as a Service (QaaS), checkout the following guide and tutorial:

- You must be have an account and be logged into the `Scaleway console <https://console.scaleway.com/organization>`__
- You have create an `API key with enough permission <https://www.scaleway.com/en/docs/identity-and-access-management/iam/how-to/create-api-keys/>`__ to use QaaS

Installation
------------

To install the stable version of only **cirq-scaleway**:

>>> pip install cirq-scaleway

Note, that this will install both **cirq-scaleway** and **cirq-core**.

To get all the optional modules installed, you'll have to use `pip install cirq` or `pip install cirq~=1.0.dev` for the pre-release version.

Getting started
---------------

In the most simple way, here the code to use **cirq-scaleway**:

>>> import cirq
>>> from cirq_scaleway import ScalewayQuantumService

>>> service = ScalewayQuantumService(
    project_id="<your-scaleway-project-id>", secret_key="<your-scaleway-secret-key>"
)

>>> # Get and display all provided (real or simulated) devices compatible with Cirq
>>> devices = service.devices(min_num_qubits=34)
>>> print(devices)

>>> # Get a specific device by its name
>>> qsim_simulator = service.device(name="EMU-QSIM-H100")

>>> # Create a device session and run a circuit against it
>>> with qsim_simulator.create_session() as session:
>>>   qubit = cirq.GridQubit(0, 0)
>>>   circuit = cirq.Circuit(cirq.X(qubit) ** 0.5, cirq.measure(qubit, key='m'))

>>>   # Run the circuit on the device
>>>   result = session.run(circuit)
>>>   print(result)

Reach us
--------

We love feedback. Feel free to reach us on `Scaleway Slack community <https://slack.scaleway.com/>`__, we are waiting for you on #opensource.
