Add keywords and options params to search posts easier.
Previously, complex `q` parameters had to be set in order to use search keywords and options in the article search endpoint. This update adds search keywords and optional params to posts() for easier search for articles.
python
keywords = ["diary", "secret"]
search_options = {
"sort": "created"
}
posts = client.posts(keywords=keywords, search_options=search_options)
v1
fix post/patch/delete request bugs