## start_engine()


Create and start an engine with the given configuration.


Usage


``` python
start_engine(config)
```


## Parameters


`config: dict`  
A dictionary of engine configuration options.


## Returns


`Engine`  
A running Engine instance.


## Examples

``` python
>>> engine = start_engine({"name": "main"})
>>> engine.status()
```

'running'
