qbraid.runtime.native.QbraidSession
- class QbraidSession(*args, api_key=None, **kwargs)[source]
Custom session with handling of request urls and authentication.
This is a child class of
qbraid_core.sessions.Session. It handles qbraid authentication with custom headers and has SSL verification disabled for compatibility with qBraid Lab.Initialize custom session with default base_url and auth_headers.
- Parameters:
api_key (optional, str) – Authenticated qBraid API key.
- __init__(*args, api_key=None, **kwargs)[source]
Initialize custom session with default base_url and auth_headers.
- Parameters:
api_key (optional, str) – Authenticated qBraid API key.
Methods
__init__(*args[, api_key])Initialize custom session with default base_url and auth_headers.
add_user_agent(user_agent)Updates the User-Agent header with additional information.
client(service_name[, api_key])Return a client for the specified service.
close()Closes all adapters and as such the session
delete(url, **kwargs)Sends a DELETE request.
get(url, **kwargs)Sends a GET request.
get_adapter(url)Returns the appropriate connection adapter for the given URL.
get_available_services()Get a list of available services that can be loaded as low-level clients via
Session.client().get_config(config_name)Returns the config value of specified config.
get_redirect_target(resp)Receives a Response.
get_user()Get user metadata.
head(url, **kwargs)Sends a HEAD request.
initialize_retry([total, connect, ...])Set the session retry policy.
merge_environment_settings(url, proxies, ...)Check the environment and merge it with some settings.
mount(prefix, adapter)Registers a connection adapter to a prefix.
options(url, **kwargs)Sends a OPTIONS request.
patch(url[, data])Sends a PATCH request.
post(url[, data, json])Sends a POST request.
prepare_request(request)Constructs a
PreparedRequestfor transmission and returns it.put(url[, data])Sends a PUT request.
rebuild_auth(prepared_request, response)When being redirected we may want to strip authentication from the request to avoid leaking credentials.
rebuild_method(prepared_request, response)When being redirected we may want to change the method of the request based on certain specs or browser behavior.
rebuild_proxies(prepared_request, proxies)This method re-evaluates the proxy configuration by considering the environment variables.
request(method, url, *args, **kwargs)Construct, prepare, and send a
Request.resolve_redirects(resp, req[, stream, ...])Receives a Response.
save_config([api_key, base_url, verify, ...])Create qbraidrc file.
send(request, **kwargs)Send a given PreparedRequest.
should_strip_auth(old_url, new_url)Decide whether Authorization header should be removed when redirecting
Attributes
api_keyReturn the api key.
base_urlReturn the base URL.
refresh_tokenReturn the session refresh token.
user_emailReturn the session user email.
headersA case-insensitive dictionary of headers to be sent on each
Requestsent from thisSession.authDefault Authentication tuple or object to attach to
Request.proxiesDictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) to be used on each
Request.hooksEvent-handling hooks.
paramsDictionary of querystring data to attach to each
Request.streamStream response content default.
verifySSL Verification default.
certSSL client certificate default, if String, path to ssl client cert file (.pem).
max_redirectsMaximum number of redirects allowed.
trust_envTrust environment settings for proxy configuration, default authentication and similar.
cookiesA CookieJar containing all currently outstanding cookies set on this session.