Skip to content

Commit d30ec02

Browse files
committed
Fixed the UtilsApi doc example, updated Readme
1 parent 9ff39a8 commit d30ec02

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Low-level client for Manticore Search.
33

44

5-
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/2.2.0
6-
75
## Requirements.
86

97
Python 2.7 and 3.4+.
@@ -13,8 +11,8 @@ Minimum Manticore Search version is > 2.5.1 with HTTP protocol enabled.
1311
| Manticore Search | manticoresearch-python | Python |
1412
| ----------------- | ------------------------ | ------------- |
1513
| >= 4.2.1 | 2.0.x | >= 3.4 |
16-
| >= 4.0.2 | 1.0.6 | >= 3.4 |
17-
| >= 2.5.1 | 1.0.5 | >= 2.7 |
14+
| >= 4.0.2 < 4.2.1 | 1.0.6 | >= 3.4 |
15+
| >= 2.5.1 < 4.0.2 | 1.0.5 | >= 2.7 |
1816

1917

2018
## Installation & Usage

docs/UtilsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ configuration = manticoresearch.Configuration(
3838
with manticoresearch.ApiClient(configuration) as api_client:
3939
# Create an instance of the API class
4040
api_instance = manticoresearch.UtilsApi(api_client)
41-
body = "["SHOW TABLES"]" # str | A query parameter string.
41+
body = "SHOW TABLES" # str | A query parameter string.
4242
raw_response = True # bool | Optional parameter, defines a format of response. Can be set to `False` for Select only queries and set to `True` or omitted for any type of queries: (optional) (default to True)
4343

4444
try:

0 commit comments

Comments
 (0)