betty.extension.gramps.config module¶
Provide configuration for the betty.extension.Gramps
extension.
- class betty.extension.gramps.config.FamilyTreeConfiguration[source]¶
Bases:
Configuration
Configure a single Gramps family tree.
- dump() bool | int | float | str | None | MutableSequence[bool | int | float | str | None | MutableSequence[Dump] | MutableMapping[str, Dump]] | MutableMapping[str, bool | int | float | str | None | MutableSequence[Dump] | MutableMapping[str, Dump]] | type[Void] [source]¶
Dump this instance to a portable format.
- load(dump: bool | int | float | str | None | MutableSequence[Dump] | MutableMapping[str, Dump]) None [source]¶
Load dumped configuration.
- Raises:
betty.assertion.error.AssertionFailed – Raised if the dump contains invalid configuration.
- class betty.extension.gramps.config.FamilyTreeConfigurationSequence[source]¶
Bases:
ConfigurationSequence
[FamilyTreeConfiguration
]Configure zero or more Gramps family trees.
- load_item(dump: bool | int | float | str | None | MutableSequence[Dump] | MutableMapping[str, Dump]) FamilyTreeConfiguration [source]¶
Create and load a new item from the given dump, or raise an assertion error.
- Raises:
betty.assertion.error.AssertionFailed – Raised when the dump is invalid and cannot be loaded.
- class betty.extension.gramps.config.GrampsConfiguration[source]¶
Bases:
Configuration
Provide configuration for the
betty.extension.gramps.Gramps
extension.- __init__(*, family_trees: Iterable[FamilyTreeConfiguration] | None = None)[source]¶
- dump() bool | int | float | str | None | MutableSequence[bool | int | float | str | None | MutableSequence[Dump] | MutableMapping[str, Dump]] | MutableMapping[str, bool | int | float | str | None | MutableSequence[Dump] | MutableMapping[str, Dump]] | type[Void] [source]¶
Dump this instance to a portable format.
- property family_trees: FamilyTreeConfigurationSequence¶
The Gramps family trees to load.
- load(dump: bool | int | float | str | None | MutableSequence[Dump] | MutableMapping[str, Dump]) None [source]¶
Load dumped configuration.
- Raises:
betty.assertion.error.AssertionFailed – Raised if the dump contains invalid configuration.