## create()


Create a new resource.


Usage


``` python
create(name)
```


## Parameters


`name: str`  
The name of the resource to create.


## Returns


`dict`  
A dictionary with the created resource.


## Examples

``` python
>>> create("item")
```

{'name': 'item', 'id': 1}
