StoresCongi

class openmsimodel.stores.gemd_template_store.StoresConfig(activated=False, designated_store_id: str = 'local', designated_root: str = PosixPath('/home/docs/checkouts/readthedocs.org/user_builds/openmsimodel/checkouts/0.1.3/openmsimodel/stores/gemd_template_store.py/stores/local'))

Bases: object

Managing the default configurations for activating store, name of the default store and a list of ids of all template stores

Example: >>> from openmsimodel.stores.gemd_template_store import StoresConfig, stores_config >>> stores_config = StoresConfig(activated=True) # default name is local >>> stores_config.designated_store_id “local” >>> stores_config = StoresConfig(activated=True, designated_store_id=”local_2”)