Skip to main content

H2O Python Clients Authentication Helpers

Project description

h2o-authn

licence pypi

H2O Python Clients Authentication Helpers.

Installation

pip install h2o-authn

Usage

Package provides two top level classes h2o_authn.TokenProvider and h2o_authn.AsyncTokenProvider with identical constructors accepting following arguments:

  • refresh_token: Refresh token which will used for the access token exchange.
  • client_id: OAuth 2.0 client id that will be used or the access token exchange.
  • issuer_url or token_endpoint_url needs to be provided
    • issuer_url: Base URL of the issuer. This URL will be used for the discovery to obtain token endpoint. Mutually exclusive with the token_endpoint_url argument.
    • token_endpoint_url: URL of the token endpoint that should be used for the access token exchange. Mutually exclusive with the issuer_url argument.
  • client_secret: Optional OAuth 2.0 client secret for the confidential clients. Used only when provided.
  • scope: Optionally sets the the scope for which the access token should be requested.
  • expiry_threshold: How long before token expiration should token be refreshed when needed. This does not mean that the token will be refreshed before it expires, only indicates the earliest moment before the expiration when refresh would occur. (default: 5s)
  • expires_in_fallback: Fallback value for the expires_in value. Will be used when token response does not contains expires_in field.
  • minimal_refresh_period: Optionally minimal period between the earliest token refresh exchanges.

Both classes has identical interface in sync or async variant.

provider = h2o_authn.TokenProvider(...)
aprovider = h2o_authn.AsyncTokenProvider(...)


# Calling the providers directly makes sure that fresh access token is available
# and returns it.
access_token = provider()
access_token = await aprovider()


# Calling the token() returns h2o_authn.token.Token instance.
token = provider.token()
token = await aprovider.token()

# It can used as str.
assert token == access_token

# And contains additional attributes when available.
token.exp  # Is expiration of the token as datetime.datetime
token.scope  # Is scope of the token if server provided it.


# Sync/Async variants can be converted from one to another.
provider = aprovider.as_sync()
aprovider = provider.as_async()


# When access token with different scope is needed new instance can cloned from
# the current with different scope.
provider = provider.with_scope("new scopes")
aprovider = aprovider.with_scope("new scopes")

Examples

Example: Use with H2O.ai MLOps Python CLient

import h2o_authn
import h2o_mlops_client as mlops

provider = h2o_authn.TokenProvider(...)
mlops_client = mlops.Client(
    gateway_url="https://mlops-api.cloud.h2o.ai",
    token_provider=provider,
)
...

Example: Use with H2O.ai Drive Python Client within the Wave App

import h2o_authn
import h2o_drive
from h2o_wave import Q, app, ui
from h2o_wave import main

@app("/")
async def serve(q: Q):
    provider = h2o_authn.AsyncTokenProvider(
        refresh_token=q.auth.refresh_token,
        issuer_url=os.getenv("H2O_WAVE_OIDC_PROVIDER_URL"),
        client_id=os.getenv("H2O_WAVE_OIDC_CLIENT_ID"),
        client_secret=os.getenv("H2O_WAVE_OIDC_CLIENT_SECRET"),
    )
    my_home = await h2o_drive.MyHome(token=provider)

    ...

Example: Use with H2O.ai Enterprise Steam Python Client

import h2o_authn
import h2osteam
import h2osteam.clients

provider = h2o_authn.TokenProvider(...)

h2osteam.login(
    url="https://steam.cloud-dev.h2o.ai", access_token=provider()
)
client = h2osteam.clients.DriverlessClient()

...

H2O Cloud Discovery support

I you use the token provider to access H2O.ai services running in your H2O AI Cloud environment, you can simply the configuration by using h2o-authn[discovery] extension.

For more info regarding H2O Cloud Discovery, please see H2O Cloud Discovery Client

pip install h2o-authn[discovery]

Module h2o_authn.discovery provides new and new_async functions which accepts following arguments:

  • discovery: The Discovery object to use for configuration.
  • client: The name of the client to use for configuration. Defaults to "platform".
  • scope: The scope to use for the token requests.
  • expiry_threshold: How long before token expiration should token be refreshed when needed. This does not mean that the token will be refreshed before it expires, only indicates the earliest moment before the expiration when refresh would occur. (default: 5s)
  • expires_in_fallback: Fallback value for the expires_in value. Will be used when token response does not contains expires_in field.
  • minimal_refresh_period: Optionally minimal period between the earliest token refresh exchanges.

Example: Use of the H2O Cloud Discovery with H2O.ai MLOps Python CLient

import h2o_authn.discovery
import h2o_discovery
import h2o_mlops_client as mlops


discovery = h2o_discovery.discover()

provider = h2o_authn.discovery.create(discovery)

mlops_client = mlops.Client(
    gateway_url=discovery.services["mlops-api"].uri,
    token_provider=provider,
)
...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

h2o_authn-2.1.0.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

h2o_authn-2.1.0-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file h2o_authn-2.1.0.tar.gz.

File metadata

  • Download URL: h2o_authn-2.1.0.tar.gz
  • Upload date:
  • Size: 16.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for h2o_authn-2.1.0.tar.gz
Algorithm Hash digest
SHA256 47e21ab5d128b64396846b31f54abce8f98431b064cd6f11fb82d3b8d7edc5eb
MD5 0bab1f6f0d947cafb6461ca986b817b4
BLAKE2b-256 5f19f548f9ec147f1bc1ac0022963f6e816e3beab1c07ea7da15b277241a351d

See more details on using hashes here.

File details

Details for the file h2o_authn-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: h2o_authn-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 12.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for h2o_authn-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 504c799dafdc5946f5b17809426b40a9ae2550ca472b2aad6e7e425d16192317
MD5 0e38e398969d06ed7c6641121b94170d
BLAKE2b-256 88a975c87c9bfc3ef657ae8c7f424455250a2758309cdddd33d391b253611bdb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page