API Reference¶
Auto-generated from docstrings using mkdocstrings.
Main¶
python_template.main
¶
Entry point for python-template.
main()
¶
Run the main application.
This is the CLI entry point configured in pyproject.toml
under [project.scripts].
Config¶
python_template.config
¶
Typed configuration using dataclasses.
Define your project's configuration here. Dataclasses provide type safety, default values, and easy serialization without external dependencies.
Usage
from python_template.config import Config
config = Config() config = Config(seed=42, data_dir="data/processed")
Config
dataclass
¶
Project configuration.