Mondaic
This API reference is not for the latest stable Salvus version.

salvus.project.project_configuration

Classes

ProjectConfig

class ProjectConfig(builtins.object):
    def __init__(self, filename: pathlib.Path): ...

General project configuration.

Right now this is pretty simple but might be expanded in the future.

Parameters
  • filename pathlib.Path — Where to store the configuration
Methods
init_with_initial_values()
def init_with_initial_values(
    filename: pathlib.Path, initial_values: Dict
) -> ProjectConfig: ...

Init a project configuration with a set of initial values.

Parameters
  • filename pathlib.Path — Where to store the file.
  • initial_values Dict — Dictionary of initial values.
Returns ProjectConfig