Skip to main content

Python wrapper for cern-sso-cli - CERN SSO authentication

Project description

cern-sso-python

Python wrapper for cern-sso-cli - CERN SSO authentication.

Installation

  1. Install the CLI (v0.27.0+): See cern-sso-cli installation instructions

  2. Install the Python package:

    pip install cern-sso-python
    

Quick Start

from cern_sso import get_cookies, get_token, device_flow

# Get cookies for a URL (requires Kerberos ticket or will prompt)
jar = get_cookies("https://gitlab.cern.ch")

# With 2FA OTP
jar = get_cookies("https://gitlab.cern.ch", otp="123456")

# Get an OAuth2 access token
token = get_token(client_id="my-app", redirect_uri="https://my-app/callback")

# Device flow for headless servers
token = device_flow(client_id="my-app")

Usage

Cookies

from cern_sso import get_cookies, load_cookies

# Authenticate and get cookies
jar = get_cookies("https://gitlab.cern.ch", otp="123456")

# Use with urllib
import urllib.request
opener = urllib.request.build_opener(
    urllib.request.HTTPCookieProcessor(jar)
)
response = opener.open("https://gitlab.cern.ch/api/v4/user")

# Save cookies to file
jar = get_cookies("https://gitlab.cern.ch", file="cookies.txt")

# Load existing cookies
jar = load_cookies("cookies.txt")

With requests

from cern_sso import get_cookies, to_requests_jar
import requests

jar = get_cookies("https://gitlab.cern.ch")
req_jar = to_requests_jar(jar)  # Requires: pip install requests
response = requests.get("https://gitlab.cern.ch/api/v4/user", cookies=req_jar)

OAuth2 Tokens

from cern_sso import get_token

token = get_token(client_id="my-app", redirect_uri="https://my-app/callback")

# Access token properties
print(token.access_token)
print(token.token_type)      # "Bearer"
print(token.expires_at)      # datetime when token expires
print(token.is_expired)      # bool

# Dict access (oauthlib compatible)
print(token["access_token"])

# Use with requests-oauthlib
from requests_oauthlib import OAuth2Session
session = OAuth2Session(token=token)

Device Flow

For headless servers without Kerberos:

from cern_sso import device_flow

token = device_flow(client_id="my-app")
# CLI will print: Go to https://auth.cern.ch/device and enter code: XXXX-YYYY
# After authenticating in browser, token is returned

print(token.access_token)
print(token.refresh_token)

Advanced: Custom Client

from cern_sso import CERNSSOClient

client = CERNSSOClient(
    cli_path="/custom/path/cern-sso-cli",
    quiet=False,  # Show CLI output
)
jar = client.get_cookies("https://gitlab.cern.ch")

2FA Options

from cern_sso import get_cookies

# Force OTP method (even if WebAuthn is default)
jar = get_cookies("https://gitlab.cern.ch", use_otp=True)

# Force WebAuthn with PIN
jar = get_cookies("https://gitlab.cern.ch", use_webauthn=True, webauthn_pin="1234")

# Specify user and OTP together
jar = get_cookies("https://gitlab.cern.ch", user="alice", otp="123456")

# Use 1Password CLI to get OTP
jar = get_cookies("https://gitlab.cern.ch", otp_command="op item get CERN --otp")
Parameter Description
user Kerberos username
otp 6-digit OTP code
otp_command Command to fetch OTP
otp_retries Max retry attempts
use_otp Force OTP method
use_webauthn Force WebAuthn method
webauthn_pin FIDO2 key PIN
webauthn_device Path to FIDO2 device
webauthn_device_index Index of FIDO2 device (from list_webauthn_devices)
webauthn_timeout Timeout in seconds for FIDO2 interaction
browser Use browser for authentication (Touch ID, etc.)

Browser Authentication

Use browser-based authentication for Touch ID, iCloud Keychain passkeys, or any other browser-supported 2FA:

from cern_sso import get_cookies

# Opens Chrome for authentication (supports Touch ID on macOS)
jar = get_cookies("https://gitlab.cern.ch", browser=True)

Requirements: Google Chrome must be installed.

WebAuthn Device Selection

List and select specific FIDO2 devices:

from cern_sso import list_webauthn_devices, get_cookies

# List available FIDO2 devices
devices = list_webauthn_devices()
for d in devices:
    print(f"{d.index}: {d.product} at {d.path}")

# Use a specific device by index
jar = get_cookies("https://gitlab.cern.ch", webauthn_device_index=0)

# Set a custom timeout for device interaction
jar = get_cookies("https://gitlab.cern.ch", webauthn_timeout=60)

Note: This only lists USB/NFC security keys. macOS Touch ID and iCloud Keychain passkeys are not detected by libfido2 — use browser=True for those.

Cookie Status Check

Check if cookies are still valid:

from cern_sso import check_status

# Check cookie expiration times
status = check_status("cookies.txt")
print(f"Has valid cookies: {status.has_valid_cookies}")
print(f"All cookies valid: {status.all_valid}")

# Verify cookies against a server (makes HTTP request)
status = check_status("cookies.txt", url="https://gitlab.cern.ch")
print(f"Server verified: {status.verified_valid}")

Harbor Docker Login

Get your CLI secret for authenticating to CERN's Harbor container registry:

from cern_sso import get_harbor_secret

# Get secret for registry.cern.ch (default)
secret = get_harbor_secret()
print(f"docker login registry.cern.ch -u {secret.username} -p {secret.secret}")

# Use with custom Harbor instance
secret = get_harbor_secret(url="https://registry-dev.cern.ch")

OpenShift Login

Get your API token for authenticating to CERN's OpenShift/OKD platform:

from cern_sso import get_openshift_token

# Get token for paas.cern.ch (default)
login = get_openshift_token()

# Print the full login command
print(login.command)  # oc login --token=sha256~... --server=https://api.paas.cern.ch:6443

# Or use components directly
print(f"Token: {login.token}")
print(f"Server: {login.server}")

Keytab Authentication

For automated environments, you can use Kerberos keytabs:

from cern_sso import get_cookies
import os

# Using KRB5_KTNAME env var (recommended)
os.environ["KRB5_KTNAME"] = "/path/to/keytab"
jar = get_cookies("https://gitlab.cern.ch")

# Explicit keytab file
jar = get_cookies("https://gitlab.cern.ch", keytab="/path/to/keytab")

# Force keytab authentication
jar = get_cookies("https://gitlab.cern.ch", use_keytab=True)

# Force credential cache
jar = get_cookies("https://gitlab.cern.ch", use_ccache=True)

# Custom Kerberos config
jar = get_cookies("https://gitlab.cern.ch", krb5_config="/path/to/krb5.conf")
Parameter Description
keytab Path to Kerberos keytab file
use_keytab Force keytab authentication
use_password Force password authentication
use_ccache Force credential cache authentication
krb5_config Kerberos config source ('embedded', 'system', or file path)

API Reference

get_cookies(url, **kwargs) -> MozillaCookieJar

Authenticate and return session cookies.

Parameter Type Description
url str Target URL to authenticate against
file str | Path Save cookies to file (optional)
user str Kerberos username
otp str 6-digit OTP code
otp_command str Command to fetch OTP
use_otp bool Force OTP method
use_webauthn bool Force WebAuthn (security key) method
webauthn_pin str FIDO2 security key PIN
webauthn_device_index int Index of FIDO2 device (from list_webauthn_devices)
webauthn_timeout int Timeout in seconds for FIDO2 interaction
browser bool Use browser for authentication (Touch ID, etc.)
keytab str Path to Kerberos keytab file
use_keytab bool Force keytab authentication
use_password bool Force password authentication
use_ccache bool Force credential cache authentication
krb5_config str Kerberos config source ('embedded', 'system', or file path)
force bool Force re-authentication
insecure bool Skip certificate validation

get_token(client_id, redirect_uri, **kwargs) -> TokenResult

Get OAuth2 access token via Authorization Code flow. Accepts same authentication parameters as get_cookies.

device_flow(client_id, **kwargs) -> TokenResult

Get OAuth2 tokens via Device Authorization Grant (for headless environments).

list_webauthn_devices() -> list[WebAuthnDevice]

List available FIDO2/WebAuthn devices. Returns a list of WebAuthnDevice objects with index, product, and path attributes.

check_status(file, **kwargs) -> CookieStatus

Check cookie expiration status.

Parameter Type Description
file str | Path Path to cookie file to check
url str URL to verify cookies against (makes HTTP request)
insecure bool Skip certificate validation when verifying
auth_host str Authentication hostname for verification

Returns a CookieStatus object with entries, verified, verified_valid, has_valid_cookies, and all_valid attributes.

get_harbor_secret(url="https://registry.cern.ch", **kwargs) -> HarborSecret

Get Harbor CLI secret for Docker login. Accepts same authentication parameters as get_cookies.

Returns a HarborSecret object with username and secret attributes.

get_openshift_token(url="https://paas.cern.ch", **kwargs) -> OpenShiftLogin

Get OpenShift API token for oc login. Accepts same authentication parameters as get_cookies.

Returns an OpenShiftLogin object with command, token, and server attributes.

CERNSSOClient(cli_path=None, quiet=True)

Low-level client for direct CLI invocation.

Parameter Type Description
cli_path str Path to cern-sso-cli binary (auto-detect if None)
quiet bool Suppress CLI progress output (default: True)

Exceptions

Exception Description
CERNSSOError Base exception
CLINotFoundError cern-sso-cli not found in PATH
CLIVersionError CLI version too old (requires ≥0.27.0)
AuthenticationError Authentication failed
CookieError Cookie file operations failed

Requirements

License

GPL-3.0 - see LICENSE

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

cern_sso_python-0.4.0.tar.gz (34.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cern_sso_python-0.4.0-py3-none-any.whl (28.6 kB view details)

Uploaded Python 3

File details

Details for the file cern_sso_python-0.4.0.tar.gz.

File metadata

  • Download URL: cern_sso_python-0.4.0.tar.gz
  • Upload date:
  • Size: 34.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cern_sso_python-0.4.0.tar.gz
Algorithm Hash digest
SHA256 15a957372ceb0e8ed2c24721566fd53d96ee096b49f1c1e742b9e56855e22ac6
MD5 7d8000fa73d4ef7b364edc9d7392afdf
BLAKE2b-256 07a24081ece73dccc6e4e417801ba643223d92bd6f5a99d1d65243a53382b6b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cern_sso_python-0.4.0.tar.gz:

Publisher: publish.yml on clelange/cern-sso-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cern_sso_python-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cern_sso_python-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c96d636068fa09fb519ab99a95f57269f539b9c96b1cbc7bcde7e493b4f6b1bc
MD5 56b60ca5d020e4d05e1e261fa728ed97
BLAKE2b-256 ddc038322878f9306aafbf262b5db70e2e3bed1e04d4da605cc0e1fddef4e513

See more details on using hashes here.

Provenance

The following attestation bundles were made for cern_sso_python-0.4.0-py3-none-any.whl:

Publisher: publish.yml on clelange/cern-sso-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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