qiskit.providers.ibmq.credentials.Credentials¶
-
class
Credentials
(token, url, websockets_url=None, hub=None, group=None, project=None, proxies=None, verify=True, services=None, access_token=None)[Quellcode]¶ IBM Quantum Experience account credentials.
Bemerkung
By convention, two credentials that have the same hub, group, and project are considered equivalent, regardless of other attributes.
Credentials constructor.
- Parameter
token (
str
) – IBM Quantum Experience API token.url (
str
) – IBM Quantum Experience URL.websockets_url (
Optional
[str
]) – URL for websocket server.hub (
Optional
[str
]) – The hub to use.group (
Optional
[str
]) – The group to use.project (
Optional
[str
]) – The project to use.proxies (
Optional
[Dict
]) – Proxy configuration.verify (
bool
) – IfFalse
, ignores SSL certificates errors.services (
Optional
[Dict
]) – Additional services for this account.access_token (
Optional
[str
]) – IBM Quantum access token.
-
__init__
(token, url, websockets_url=None, hub=None, group=None, project=None, proxies=None, verify=True, services=None, access_token=None)[Quellcode]¶ Credentials constructor.
- Parameter
token (
str
) – IBM Quantum Experience API token.url (
str
) – IBM Quantum Experience URL.websockets_url (
Optional
[str
]) – URL for websocket server.hub (
Optional
[str
]) – The hub to use.group (
Optional
[str
]) – The group to use.project (
Optional
[str
]) – The project to use.proxies (
Optional
[Dict
]) – Proxy configuration.verify (
bool
) – IfFalse
, ignores SSL certificates errors.services (
Optional
[Dict
]) – Additional services for this account.access_token (
Optional
[str
]) – IBM Quantum access token.
Methods
__init__
(token, url[, websockets_url, hub, …])Credentials constructor.
Construct connection related parameters.
is_ibmq
()Return whether the credentials represent an IBM Quantum Experience account.
Return a value that uniquely identifies these credentials.
-
connection_parameters
()[Quellcode]¶ Construct connection related parameters.
- Rückgabetyp
Dict
[str
,Any
]- Rückgabe
A dictionary with connection-related parameters in the format expected by
requests
. The following keys can be present:proxies
,verify
, andauth
.
-
is_ibmq
()[Quellcode]¶ Return whether the credentials represent an IBM Quantum Experience account.
- Rückgabetyp
bool
-
unique_id
()[Quellcode]¶ Return a value that uniquely identifies these credentials.
By convention, two credentials that have the same hub, group, and project are considered equivalent.
- Rückgabetyp
HubGroupProject
- Rückgabe
A
HubGroupProject
instance.