post()
Create a new blog post.
Usage
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
>>> post("Hello", "World")
{'title': 'Hello', 'content': 'World'}