## publish()


Publish a blog post.


Usage


``` python
publish(
    title,
    body,
)
```


## Parameters


`title: str`  
The post title.

`body: str`  
The post body.


## Returns


`dict`  
The published post record.


## Examples

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

{'title': 'Hello', 'body': 'World', 'status': 'published'}
