Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 936 Bytes

File metadata and controls

37 lines (27 loc) · 936 Bytes
name usage
doc_type usage
description Representative public usage patterns for sandbox python lib. Use when you need examples of common caller workflows.

Usage

Overview

The package exposes the common config and public-error boundary before product-specific behavior is added.

Public Imports

from sandbox_python_lib import (
    SampleLibConfig,
    SampleLibError,
    get_config,
    install_config,
)

config = install_config(SampleLibConfig())
assert get_config() is config

Runnable Examples

  • config_demo.py Run with: uv run python examples/sandbox_python_lib/config_demo.py

Next Public Slice

When the first real behavior lands, document caller-facing examples here using only imports from sandbox_python_lib. Keep private implementation details in architecture docs, tests, or workbench probes, not in public usage examples.