## DataHolder


A container for holding computation results.


Usage


``` python
DataHolder(name)
```


## Parameters


`name: str`  
The name of the data holder.


## Examples

``` python
>>> dh = DataHolder("results")
>>> dh.get_data()
```

{}


## Methods

| Name | Description |
|----|----|
| [__init__()](#__init__) | Initialize the DataHolder. |
| [get_data()](#get_data) | Return the stored data. |

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


#### \_\_init\_\_()


Initialize the DataHolder.


Usage


``` python
__init__(name)
```


##### Parameters


`name: str`  
The name of the data holder.


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


#### get_data()


Return the stored data.


Usage


``` python
get_data()
```


##### Returns


`dict`  
The stored data dictionary.


##### Examples

``` python
>>> dh = DataHolder("test")
>>> dh.get_data()
```

{}
