## get_label()


Get a human-readable label for a status.


Usage


``` python
get_label(status)
```


## Parameters


`status: Status`  
The status enum value.


## Returns


`str`  
A formatted label string.


## Examples

``` python
    >>> get_label(Status.RUNNING)
```

    'In Progress'
