jupyterhub-fastapi-adapter
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_userFastAPI dependency - ✅
Usermodel with username, admin status, and groups - ✅ Authentication exception and exception handler
- ✅ Supports both OAuth cookies and
Authorizationheaders
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:
- A user accesses a protected endpoint.
- If no valid authentication is present,
AuthenticationRequiredis raised. - The exception handler redirects the browser to JupyterHub's OAuth endpoint.
- JupyterHub authenticates the user.
- The OAuth callback exchanges the authorization code for an access token.
- The access token is stored in a cookie.
- 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
AuthenticationRequiredauthentication_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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jupyterhub_fastapi_adapter-0.1.0.tar.gz.
File metadata
- Download URL: jupyterhub_fastapi_adapter-0.1.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62010e04123dd75e0d6b3d6abd625e3f5886c6e37a779101822ef2486abd7f6f
|
|
| MD5 |
cafd68ac12e2d9a5b9bdf6bb425452d2
|
|
| BLAKE2b-256 |
032165b6214e0a38a6163397db786d2cef726a4a120a442d8a8201c8f5471945
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jupyterhub_fastapi_adapter-0.1.0.tar.gz -
Subject digest:
62010e04123dd75e0d6b3d6abd625e3f5886c6e37a779101822ef2486abd7f6f - Sigstore transparency entry: 2289481549
- Sigstore integration time:
-
Permalink:
DigiKlausur/jupyterhub-fastapi-adapter@023da6d55da1d22021a8e462169a02f8da7a7747 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/DigiKlausur
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@023da6d55da1d22021a8e462169a02f8da7a7747 -
Trigger Event:
release
-
Statement type:
File details
Details for the file jupyterhub_fastapi_adapter-0.1.0-py3-none-any.whl.
File metadata
- Download URL: jupyterhub_fastapi_adapter-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4526c9999670590ba41c279d40a143c728e9f3f91dd300b3fcbed9a0fccc4fe0
|
|
| MD5 |
c45dd2046381839ab6d9eb901088fddd
|
|
| BLAKE2b-256 |
e12f8e9beedd0b7949938ec13bf86fd803e3f7747c9b69c8bccac2e8a4200bd5
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jupyterhub_fastapi_adapter-0.1.0-py3-none-any.whl -
Subject digest:
4526c9999670590ba41c279d40a143c728e9f3f91dd300b3fcbed9a0fccc4fe0 - Sigstore transparency entry: 2289481640
- Sigstore integration time:
-
Permalink:
DigiKlausur/jupyterhub-fastapi-adapter@023da6d55da1d22021a8e462169a02f8da7a7747 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/DigiKlausur
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@023da6d55da1d22021a8e462169a02f8da7a7747 -
Trigger Event:
release
-
Statement type: