## transform()


Transform a dictionary of data.


Usage


``` python
transform(data)
```


## Parameters


`data: dict`  
The input dictionary to transform.


## Returns


`dict`  
The transformed dictionary.


## Examples

``` python
>>> transform({"key": "value"})
```

{'key': 'VALUE'}
