You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,8 @@
2
2
3
3
Сlient for Manticore Search.
4
4
5
-
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/7.0.0
6
5
7
-
❗ WARNING: the current version has breaking changes compared to the previous releasehttps://github.com/manticoresoftware/manticoresearch-python/tree/6.0.0
6
+
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/7.0.0
8
7
9
8
## Requirements.
10
9
@@ -15,9 +14,10 @@ Minimum Manticore Search version is >= 2.5.1 with HTTP protocol enabled.
15
14
|`manticoresearch-devel`|`dev` (latest development version) | 3.4 or newer | ✅ Fully Compatible |
16
15
| 6.0.0 or newer | 7.0.0 or newer | 3.4 or newer | ✅ Fully Compatible |
17
16
| 6.0.0 or newer | 6.2.1 to 7.0.0 | 3.4 or newer | ⚠️ Partially Compatible |
18
-
| 3.3.1 to 6.0.0 | 6.2.1 or newer | 3.4 or newer | ✅ Fully Compatible |
19
-
| 2.0.0 to 3.3.1 | 6.2.1 or newer | 3.4 or newer | ⚠️ Partially Compatible |
20
-
| 2.0.0 to 3.3.1 | 4.2.1 to 6.2.1 | 3.4 or newer | ✅ Fully Compatible |
17
+
| 3.3.1 to 6.0.0 | 7.0.0 or newer | 3.4 or newer | ⚠️ Partially Compatible |
18
+
| 3.3.1 to 6.0.0 | 6.2.1 to 7.0.0 | 3.4 or newer | ✅ Fully Compatible |
19
+
| 2.0.0 to 3.3.1 | 6.2.0 or newer | 3.4 or newer | ⚠️ Partially Compatible |
20
+
| 2.0.0 to 3.3.1 | 4.2.1 to 6.2.0 | 3.4 or newer | ✅ Fully Compatible |
21
21
| 1.0.6 to 2.0.0 | 4.0.2 to 4.2.1 | 3.4 or newer | ✅ Fully Compatible |
22
22
| 1.0.5 to 1.0.6 | 4.0.2 to 4.2.1 | 2.7 or newer | ⚠️ Partially Compatible |
23
23
| 1.0.5 to 1.0.6 | 2.5.1 to 4.0.2 | 2.7 or newer | ✅ Fully Compatible |
@@ -98,7 +98,7 @@ with manticoresearch.ApiClient(configuration) as api_client:
98
98
print("The response of SearchApi->search:\n")
99
99
pprint(search_response)
100
100
101
-
# Alternatively, you can pass all request arguments as JSON strings
101
+
# Alternatively, you can pass all request arguments as a complex JSON object
102
102
indexApi.insert({"index": "products", "doc" : {"title" : "Crossbody Bag with Tassel", "price" : 19.85}})
**table** | **str** | The table to perform the search on |
10
+
**query** | **str** | The beginning of the string to autocomplete |
11
+
**options** | **object** | Autocomplete options - layouts: A comma-separated string of keyboard layout codes to validate and check for spell correction. Available options - us, ru, ua, se, pt, no, it, gr, uk, fr, es, dk, de, ch, br, bg, be. By default, all are enabled. - fuzziness: (0,1 or 2) Maximum Levenshtein distance for finding typos. Set to 0 to disable fuzzy matching. Default is 2 - prepend: true/false If true, adds an asterisk before the last word for prefix expansion (e.g., *word ) - append: true/false If true, adds an asterisk after the last word for prefix expansion (e.g., word* ) - expansion_len: Number of characters to expand in the last word. Default is 10. | [optional]
12
+
13
+
## Example
14
+
15
+
```python
16
+
from manticoresearch.models.autocomplete_request import AutocompleteRequest
17
+
18
+
# create an instance of AutocompleteRequest from a JSON string
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/IndexApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -300,7 +300,7 @@ No authorization required
300
300
301
301
Replace new document in a table
302
302
303
-
Replace an existing document. Input has same format as `insert` operation. <br/> Responds with an object in format: <br/>``` {'table':'products','_id':1,'created':false,'result':'updated','status':200} ```
303
+
Replace an existing document. Input has same format as `insert` operation. Responds with an object in format: ``` {'table':'products','_id':1,'created':false,'result':'updated','status':200} ```
0 commit comments