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.25.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}")

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.

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.25.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.3.0.tar.gz (32.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.3.0-py3-none-any.whl (27.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: cern_sso_python-0.3.0.tar.gz
  • Upload date:
  • Size: 32.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.3.0.tar.gz
Algorithm Hash digest
SHA256 1528df89b9fa3b2e733f9d09e2c19d1b5217bb02952e62ee89801a927b189fab
MD5 0d70cc9122a62acd457e0cb27fd30b1f
BLAKE2b-256 a5f9e2d0b5464b4f99212df78e0b1fc404d8528caefd9696495778a1a0452cd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cern_sso_python-0.3.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.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cern_sso_python-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bab6eacc3577904e0ddd1221f3bcb8f668db4194ae380829f9b18f65e2d9aded
MD5 1bfb8e04c2fc28dbb91768999fd8b1bb
BLAKE2b-256 0bc1fb3f9342ff59037ae39574a12b891104d209d62961eadf7f02b264255f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for cern_sso_python-0.3.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