Skip to main content

A tiny, typed error-boundary decorator for Streamlit apps (UI-safe fallback + pluggable hooks)

Project description

st-error-boundary

A minimal, type-safe error boundary library for Streamlit applications with pluggable hooks and safe fallback UI.

Motivation

Streamlit's default behavior displays detailed stack traces in the browser when exceptions occur. While client.showErrorDetails = "none" prevents information leakage, it shows only generic error messages, leaving users confused. The typical solution—scattering st.error() and st.stop() calls throughout your code—severely degrades readability and maintainability, and creates a risk of forgetting exception handling in critical places.

This library solves the problem with the decorator pattern: a single "last line of defense" decorator that separates exception handling (cross-cutting concern) from business logic. Just decorate your main function, and all unhandled exceptions are caught and displayed with user-friendly messages—no need to pollute your code with error handling boilerplate everywhere.

This pattern is extracted from production use and open-sourced to help others build robust Streamlit applications without sacrificing code clarity. For the full architectural context, see the PyConJP 2025 presentation.

Features

  • Minimal API: Just two required arguments (on_error and fallback)
  • Type-safe: Full Python 3.12+ type hints with strict mypy/pyright checking
  • Callback Protection: Protect both decorated functions and widget callbacks (on_click, on_change, etc.)
  • Pluggable Hooks: Execute side effects (audit logging, metrics, notifications) when errors occur
  • Safe Fallback UI: Display user-friendly error messages instead of tracebacks

Installation

pip install st-error-boundary

Quick Start

Basic Usage (Decorator Only)

For simple cases where you only need to protect the main function:

import streamlit as st
from st_error_boundary import ErrorBoundary

# Create error boundary
boundary = ErrorBoundary(
    on_error=lambda exc: print(f"Error logged: {exc}"),
    fallback="An error occurred. Please try again later."
)

@boundary.decorate
def main() -> None:
    st.title("My App")

    if st.button("Trigger Error"):
        raise ValueError("Something went wrong")

if __name__ == "__main__":
    main()

Limitation: on_click/on_change callbacks are not protected with this approach.

Advanced Usage (With Callbacks)

To protect both decorated functions and widget callbacks:

import streamlit as st
from st_error_boundary import ErrorBoundary

def audit_log(exc: Exception) -> None:
    # Log to monitoring service
    print(f"Error: {exc}")

def fallback_ui(exc: Exception) -> None:
    st.error("An unexpected error occurred.")
    st.link_button("Contact Support", "https://example.com/support")
    if st.button("Retry"):
        st.rerun()

# Single ErrorBoundary instance for DRY configuration
boundary = ErrorBoundary(on_error=audit_log, fallback=fallback_ui)

def handle_click() -> None:
    # This will raise an error
    result = 1 / 0

@boundary.decorate
def main() -> None:
    st.title("My App")

    # Protected: error in if statement
    if st.button("Direct Error"):
        raise ValueError("Error in main function")

    # Protected: error in callback
    st.button("Callback Error", on_click=boundary.wrap_callback(handle_click))

if __name__ == "__main__":
    main()

Why ErrorBoundary Class?

Streamlit executes on_click and on_change callbacks before the script reruns, meaning they run outside the decorated function's scope. This is why @boundary.decorate alone cannot catch callback errors.

Execution Flow:

  1. User clicks button with on_click=callback
  2. Streamlit executes callback() -> Not protected by decorator
  3. Streamlit reruns the script
  4. Decorated function executes -> Protected by decorator

Solution: Use boundary.wrap_callback() to explicitly wrap callbacks with the same error handling logic.

API Reference

ErrorBoundary

ErrorBoundary(
    on_error: ErrorHook | Iterable[ErrorHook],
    fallback: str | FallbackRenderer
)

Parameters:

  • on_error: Single hook or list of hooks for side effects (logging, metrics, etc.)
  • fallback: Either a string (displayed via st.error()) or a callable that renders custom UI

Methods:

  • .decorate(func): Decorator to wrap a function with error boundary
  • .wrap_callback(callback): Wrap a widget callback (on_click, on_change, etc.)

ErrorHook Protocol

def hook(exc: Exception) -> None:
    """Handle exception with side effects."""
    ...

FallbackRenderer Protocol

def renderer(exc: Exception) -> None:
    """Render fallback UI for the exception."""
    ...

Examples

Multiple Hooks

def log_error(exc: Exception) -> None:
    logging.error(f"Error: {exc}")

def send_metric(exc: Exception) -> None:
    metrics.increment("app.errors")

boundary = ErrorBoundary(
    on_error=[log_error, send_metric],  # Hooks execute in order
    fallback="An error occurred."
)

Custom Fallback UI

def custom_fallback(exc: Exception) -> None:
    st.error(f"Error: {type(exc).__name__}")
    st.warning("Please try again or contact support.")

    col1, col2 = st.columns(2)
    with col1:
        if st.button("Retry"):
            st.rerun()
    with col2:
        st.link_button("Report Bug", "https://example.com/bug-report")

boundary = ErrorBoundary(on_error=lambda _: None, fallback=custom_fallback)

Important Notes

Callback Error Rendering Position

When using wrap_callback(), errors in widget callbacks (on_click, on_change) are rendered at the top of the page instead of near the widget. This is a Streamlit architectural limitation.

Workaround: Use the deferred rendering pattern to control error position. See Callback Rendering Position Guide for details.

Development

# Install dependencies
make install

# Run linting and type checking
make

# Run tests
make test

# Run example app
make example

License

MIT

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

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

st_error_boundary-0.1.1.tar.gz (69.7 kB view details)

Uploaded Source

Built Distribution

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

st_error_boundary-0.1.1-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file st_error_boundary-0.1.1.tar.gz.

File metadata

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

File hashes

Hashes for st_error_boundary-0.1.1.tar.gz
Algorithm Hash digest
SHA256 3b5bfd650f4ab16d4582e319a70a82ae95eb142d6e5db29b5dfcfd5d6048e82c
MD5 039177a2b0e775f4e458fce3da9b9f5b
BLAKE2b-256 0df4fa89dc0c423e984e0f6532ebccc76cbf4472bc3ecef9fac5cdc03cc0b185

See more details on using hashes here.

Provenance

The following attestation bundles were made for st_error_boundary-0.1.1.tar.gz:

Publisher: release.yml on K-dash/st-error-boundary

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

File details

Details for the file st_error_boundary-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for st_error_boundary-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 308ee7e94f26c974116eb6ccab58b144be557fe55ff5900d761f7f21a25527a3
MD5 ab8291b954bbf12ca6f755bc4c61a94f
BLAKE2b-256 3f6dd530d275447a5163caecea1e3134c196b4490bccc781947a2807b23d5992

See more details on using hashes here.

Provenance

The following attestation bundles were made for st_error_boundary-0.1.1-py3-none-any.whl:

Publisher: release.yml on K-dash/st-error-boundary

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