## Engine


A task execution engine.


Usage


``` python
Engine(workers=4)
```


## Parameters


`workers: int = ``4`  
Number of worker threads.


## Methods

| Name | Description |
|----|----|
| [execute()](#execute) | Execute a named task. |

------------------------------------------------------------------------


#### execute()


Execute a named task.


Usage


``` python
execute(task)
```


##### Parameters


`task: str`  
Name of the task.


##### Returns


`bool`  
True if successful.
