Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status License Code coverage CodeQL PyPI

obi-auth

obi-auth is a library for retrieving Keycloak access tokens interactively. It helps developers and testers quickly authenticate against Keycloak without writing scripts or configuring complex clients.

Caution

obi-auth is designed to be used interactively and should not be used within a service or application.

Installation

Basic Installation

pip install obi-auth

CLI Support

To use the obi-auth command-line interface:

pip install obi-auth[cli]

This installs click which is required by the CLI.

Notebook Support

For enhanced Jupyter notebook support with Rich display integration:

pip install obi-auth[notebook]

This installs rich which provides better rendering in Jupyter notebooks.

Examples

from obi_auth import get_token

access_token = get_token(environment="staging")
access_token = get_token(environment="staging", token_provider="auth_manager")

# Mint from an existing auth-manager persistent id (e.g. obi-one launch scripts):
access_token = get_token(
    environment="staging",
    auth_mode="persistent_token",
    persistent_token_id="<uuid>",
)

CLI

After installing with the cli extra, the obi-auth command is available. Run obi-auth --help for the full list of commands and options.

get-token

Authenticate and print the access token to stdout. Output is a single token string, suitable for piping into other commands.

obi-auth get-token
obi-auth get-token -e production -m daf
obi-auth get-token -p auth_manager
obi-auth get-token -m persistent_token --persistent-token-id <uuid>
obi-auth get-token --force-refresh
Option Description
-e, --environment Target environment: staging (default) or production
-m, --auth-mode Authentication method: pkce (default), daf, or persistent_token
-p, --token-provider Token issuer: keycloak (default) or auth_manager
--persistent-token-id Persistent token id (required when --auth-mode persistent_token)
--force-refresh Clear the cached token and authenticate again

decode-token

Decode a JWT and print the payload as indented JSON. Pass the token as an argument or via stdin.

obi-auth decode-token eyJhbGciOi...
obi-auth get-token | obi-auth decode-token
obi-auth get-token | obi-auth decode-token | jq -r '.sub'

get-user-info

Authenticate, fetch user info from Keycloak, and print the result as indented JSON.

obi-auth get-user-info
obi-auth get-user-info -e production -m daf
obi-auth get-user-info -p auth_manager
obi-auth get-user-info --force-refresh
obi-auth get-user-info | jq -r '.sub'
Option Description
-e, --environment Target environment: staging (default) or production
-m, --auth-mode Authentication method: pkce (default), daf, or persistent_token
-p, --token-provider Token issuer: keycloak (default) or auth_manager
--persistent-token-id Persistent token id (required when --auth-mode persistent_token)
--force-refresh Clear the cached token and authenticate again

Global options

Option Description
--log-level Logging level: DEBUG, INFO, WARNING (default), ERROR, CRITICAL

License

Copyright (c) 2025 Open Brain Institute

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages