nside_wefa.common.settings

Shared, typed accessor for the NSIDE_WEFA settings dictionary.

This module is the single entry point new WeFa apps should use to read their section of the project’s NSIDE_WEFA settings. It returns plain dicts (not ad-hoc _Configuration classes) so callers can apply their own TypedDict casts when needed and so the reader stays free of any per-app coupling.

Validation of the contents is intentionally not done here — that lives in each app’s checks.py so configuration mistakes surface at manage.py check time, not lazily at first-read time.

Functions

get_section(section_name, default)

Return the NSIDE_WEFA[<section_name>] mapping.

get_value(section_name, key[, default])

Return NSIDE_WEFA[<section_name>][<key>] or default if absent.