qiskit.providers.BaseProvider¶
-
class
BaseProvider
(*args, **kwargs)[source]¶ Base class for a Backend Provider.
Methods
__init__
(*args, **kwargs)Initialize self.
backends
([name])Return a list of backends matching the specified filtering.
get_backend
([name])Return a single backend matching the specified filtering.
-
abstract
backends
(name=None, **kwargs)[source]¶ Return a list of backends matching the specified filtering.
- Parameters
name (str) – name of the backend.
**kwargs – dict used for filtering.
- Returns
- a list of Backends that match the filtering
criteria.
- Return type
list[BaseBackend]
-
get_backend
(name=None, **kwargs)[source]¶ Return a single backend matching the specified filtering.
- Parameters
name (str) – name of the backend.
**kwargs – dict used for filtering.
- Returns
a backend matching the filtering.
- Return type
- Raises
QiskitBackendNotFoundError – if no backend could be found or more than one backend matches the filtering criteria.
-
abstract