start_engine()
Create and start an engine with the given configuration.
Usage
start_engine(config)Parameters
config: dict-
A dictionary of engine configuration options.
Returns
Engine-
A running Engine instance.
Examples
>>> engine = start_engine({"name": "main"})
>>> engine.status()
'running'