Skip to content

Commit

Permalink
Regenerated the client
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Oct 22, 2024
1 parent d1a2481 commit c866f96
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Сlient for Manticore Search.


❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/5.0.0
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/4.0.0

## Requirements.

Expand Down Expand Up @@ -69,7 +69,8 @@ with manticoresearch.ApiClient(configuration) as api_client:
indexApi = manticoresearch.IndexApi(api_client)
searchApi = manticoresearch.SearchApi(api_client)

try:
try:
# Perform insert and search operations
newDoc = {"title" : "Crossbody Bag with Tassel", "price": 19.85}
insert_request = InsertDocumentRequest(index="products", doc=newDoc)
indexApi.insert(insert_request)
Expand Down

0 comments on commit c866f96

Please sign in to comment.