Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
----------
url : str
URL of the API server, e.g. "https://localhost:9090"
token : str
JSON Web Token for this API server
api_version : int, default 0
Version of the API to connect to
ssl_certificate: str or None
Provide a path to an ssl certificate to use, or None to use
default root certificates.
Returns
-------
ASyncConnection
"""
return ASyncConnection(
url=url, token=token, api_version=api_version, ssl_certificate=ssl_certificate
)