| name | usage |
|---|---|
| doc_type | usage |
| description | Representative public usage patterns for sandbox python lib. Use when you need examples of common caller workflows. |
The package exposes the common config and public-error boundary before product-specific behavior is added.
from sandbox_python_lib import (
SampleLibConfig,
SampleLibError,
get_config,
install_config,
)
config = install_config(SampleLibConfig())
assert get_config() is config- config_demo.py
Run with:
uv run python examples/sandbox_python_lib/config_demo.py
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.