AQTProvider¶
- class AQTProvider(access_token)[source]¶
Provider for backends from Alpine Quantum Technologies (AQT).
Typical usage is:
from qiskit_aqt_provider import AQTProvider aqt = AQTProvider('MY_TOKEN') backend = aqt.backends.aqt_qasm_simulator
where ‘MY_TOKEN’ is the access token provided by AQT.
- access_token¶
The access token.
- Type
str
- name¶
Name of the provider instance.
- Type
str
- backends¶
A service instance that allows for grabbing backends.
- Type
- get_backend(name=None, **kwargs)[source]¶
Return a single backend matching the specified filtering. :param name: name of the backend. :type name: str :param **kwargs: dict used for filtering.
- Returns
a backend matching the filtering.
- Return type
Backend
- Raises
QiskitBackendNotFoundError – if no backend could be found or more than one backend matches the filtering criteria.