## post()


Create a new blog post.


Usage


``` python
post(
    title,
    content,
)
```


## Parameters


`title: str`  
The title of the blog post.

`content: str`  
The content of the blog post.


## Returns


`dict`  
A dictionary representing the created post.


## Examples

``` python
>>> post("Hello", "World")
```

{'title': 'Hello', 'content': 'World'}
