Skip to main content

jupyterhub-fastapi-adapter

License: MIT Python Version PyPI Version

A lightweight adapter for building authenticated FastAPI services that run behind JupyterHub.

The package provides:

  • OAuth authentication using JupyterHub's service OAuth flow
  • FastAPI dependencies for accessing the authenticated user
  • Automatic browser redirects to the JupyterHub login page
  • Health-check friendly authentication handling
  • Cookie- and token-based authentication support

Features

  • ✅ OAuth login flow for browser-based services
  • require_authenticated_user FastAPI dependency
  • User model with username, admin status, and groups
  • ✅ Authentication exception and exception handler
  • ✅ Supports both OAuth cookies and Authorization headers

Installation

pip install jupyterhub-fastapi-adapter

Requirements

The service must run as a JupyterHub Service and the following environment variables must be available:

Variable Description
JUPYTERHUB_API_URL URL of the JupyterHub API
JUPYTERHUB_API_TOKEN Service API token
JUPYTERHUB_SERVICE_PREFIX Service prefix assigned by JupyterHub

Basic Usage

Create a FastAPI application:

"""
Minimal FastAPI JupyterHub managed service.
Shows the authenticated user's information as JSON.

Uses jupyterhub.services.auth.HubOAuth to identify the logged-in user
from JupyterHub's OAuth cookie.
"""

import os

from fastapi import Depends, FastAPI
from jupyterhub.utils import url_path_join
from jupyterhub_fastapi_adapter import (
    AuthenticationRequired,
    User,
    authentication_required_handler,
    oauth_callback,
    require_authenticated_user,
)

JUPYTERHUB_SERVICE_PREFIX = os.environ["JUPYTERHUB_SERVICE_PREFIX"]

app = FastAPI()

# Register exception handler
app.exception_handler(AuthenticationRequired)(authentication_required_handler)

# Register OAuth callback route
app.get(url_path_join(JUPYTERHUB_SERVICE_PREFIX, "oauth_callback"))(oauth_callback)


@app.get(JUPYTERHUB_SERVICE_PREFIX)
async def index(user: User = Depends(require_authenticated_user)):
    """Return authenticated user information."""
    return user


@app.get(url_path_join(JUPYTERHUB_SERVICE_PREFIX, "hello"))
async def hello(user: User = Depends(require_authenticated_user)):
    return {"message": f"Hello, {user.username}!"}

When an unauthenticated browser visits the service, they are automatically redirected to the JupyterHub OAuth login flow.

After successful authentication, JupyterHub redirects the user back to the service and authentication is handled using an OAuth cookie.


Authentication Dependency

Use the provided dependency to require authentication:

from fastapi import Depends

from jupyterhub_fastapi_adapter.dependencies import require_authenticated_user


@app.get("/protected")
async def protected(user=Depends(require_authenticated_user)):
    return {"hello": user.username}

The dependency returns a User object:

class User(BaseModel):
    username: str
    admin: bool
    groups: list[str]

OAuth Flow

The package implements the standard JupyterHub service OAuth flow:

  1. A user accesses a protected endpoint.
  2. If no valid authentication is present, AuthenticationRequired is raised.
  3. The exception handler redirects the browser to JupyterHub's OAuth endpoint.
  4. JupyterHub authenticates the user.
  5. The OAuth callback exchanges the authorization code for an access token.
  6. The access token is stored in a cookie.
  7. Future requests authenticate using that cookie.

For API clients, bearer tokens supplied via the Authorization header are also supported.


Health Checks

Requests that do not advertise Accept: text/html receive a simple 200 OK response instead of an OAuth redirect when authentication is required.

This allows JupyterHub and other infrastructure to perform health checks without triggering the login flow.


API

hub_oauth

  • AuthenticationRequired
  • authentication_required_handler()
  • oauth_callback()
  • get_token_from_request()

dependencies

  • require_authenticated_user()
  • get_current_user()
  • User

License

MIT

Download files

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

Source Distribution

jupyterhub_fastapi_adapter-0.1.0.tar.gz (7.2 kB view details)

Uploaded Source

Built Distribution

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

jupyterhub_fastapi_adapter-0.1.0-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file jupyterhub_fastapi_adapter-0.1.0.tar.gz.

File metadata

File hashes

Hashes for jupyterhub_fastapi_adapter-0.1.0.tar.gz
Algorithm Hash digest
SHA256 62010e04123dd75e0d6b3d6abd625e3f5886c6e37a779101822ef2486abd7f6f
MD5 cafd68ac12e2d9a5b9bdf6bb425452d2
BLAKE2b-256 032165b6214e0a38a6163397db786d2cef726a4a120a442d8a8201c8f5471945

See more details on using hashes here.

Provenance

The following attestation bundles were made for jupyterhub_fastapi_adapter-0.1.0.tar.gz:

Publisher: python-publish.yml on DigiKlausur/jupyterhub-fastapi-adapter

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

File details

Details for the file jupyterhub_fastapi_adapter-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for jupyterhub_fastapi_adapter-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4526c9999670590ba41c279d40a143c728e9f3f91dd300b3fcbed9a0fccc4fe0
MD5 c45dd2046381839ab6d9eb901088fddd
BLAKE2b-256 e12f8e9beedd0b7949938ec13bf86fd803e3f7747c9b69c8bccac2e8a4200bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jupyterhub_fastapi_adapter-0.1.0-py3-none-any.whl:

Publisher: python-publish.yml on DigiKlausur/jupyterhub-fastapi-adapter

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 Sentry Error logging StatusPage Status page