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
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
Low-level client for Manticore Search.
3
3
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/3.3.0
6
5
7
6
## Requirements.
8
7
@@ -93,13 +92,13 @@ All URIs are relative to *http://127.0.0.1:9308*
[[Using in search requests]](SearchApi.md#BoolFilter)
11
+
[[Using in search requests]](SearchRequest.md#BoolFilter)
12
12
13
13
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Using in search requests]](SearchApi.md#EqualsFilter)
10
+
[[Using in search requests]](SearchRequest.md#EqualsFilter)
11
11
12
12
[[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/GeoDistanceFilter.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
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
**distance_type** | **str** | | [optional]
10
10
**distance** | **str** | | [optional]
11
11
12
-
[[Using in search requests]](SearchApi.md#GeoDistanceFilter)
12
+
[[Using in search requests]](SearchRequest.md#GeoDistanceFilter)
13
13
14
14
[[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/HighlightField.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
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
**limit_words** | **int** | | [optional][default to 0]
10
10
**limit_snippets** | **int** | | [optional][default to 0]
11
11
12
-
[[Using in search requests]](SearchApi.md#HighlightField)
12
+
[[Using in search requests]](SearchRequest.md#HighlightField)
13
13
14
14
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Using in search requests]](SearchApi.md#InFilter)
10
+
[[Using in search requests]](SearchRequest.md#InFilter)
11
11
12
12
[[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
+10-15Lines changed: 10 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ All URIs are relative to *http://127.0.0.1:9308*
4
4
5
5
Method | HTTP request | Description
6
6
------------- | ------------- | -------------
7
-
[**bulk**](IndexApi.md#bulk) | **POST** /json/bulk | Bulk index operations
8
-
[**delete**](IndexApi.md#delete) | **POST** /json/delete | Delete a document in an index
9
-
[**insert**](IndexApi.md#insert) | **POST** /json/insert | Create a new document in an index
10
-
[**replace**](IndexApi.md#replace) | **POST** /json/replace | Replace new document in an index
11
-
[**update**](IndexApi.md#update) | **POST** /json/update | Update a document in an index
7
+
[**bulk**](IndexApi.md#bulk) | **POST** /bulk | Bulk index operations
8
+
[**delete**](IndexApi.md#delete) | **POST** /delete | Delete a document in an index
9
+
[**insert**](IndexApi.md#insert) | **POST** /insert | Create a new document in an index
10
+
[**replace**](IndexApi.md#replace) | **POST** /replace | Replace new document in an index
11
+
[**update**](IndexApi.md#update) | **POST** /update | Update a document in an index
12
12
13
13
14
-
# **bulk**
14
+
##**bulk**
15
15
> BulkResponse bulk(body)
16
16
17
17
Bulk index operations
@@ -83,7 +83,6 @@ with manticoresearch.ApiClient(configuration) as api_client:
83
83
84
84
```
85
85
86
-
87
86
### Parameters
88
87
89
88
Name | Type | Description | Notes
@@ -111,7 +110,7 @@ No authorization required
111
110
112
111
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
113
112
114
-
# **delete**
113
+
##**delete**
115
114
> DeleteResponse delete(delete_document_request)
116
115
117
116
Delete a document in an index
@@ -190,7 +189,6 @@ with manticoresearch.ApiClient(configuration) as api_client:
190
189
191
190
```
192
191
193
-
194
192
### Parameters
195
193
196
194
Name | Type | Description | Notes
@@ -218,7 +216,7 @@ No authorization required
218
216
219
217
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
220
218
221
-
# **insert**
219
+
##**insert**
222
220
> SuccessResponse insert(insert_document_request)
223
221
224
222
Create a new document in an index
@@ -312,7 +310,6 @@ with manticoresearch.ApiClient(configuration) as api_client:
312
310
313
311
```
314
312
315
-
316
313
### Parameters
317
314
318
315
Name | Type | Description | Notes
@@ -340,7 +337,7 @@ No authorization required
340
337
341
338
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
@@ -393,7 +390,6 @@ with manticoresearch.ApiClient(configuration) as api_client:
393
390
394
391
```
395
392
396
-
397
393
### Parameters
398
394
399
395
Name | Type | Description | Notes
@@ -421,7 +417,7 @@ No authorization required
421
417
422
418
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
423
419
424
-
# **update**
420
+
##**update**
425
421
> UpdateResponse update(update_document_request)
426
422
427
423
Update a document in an index
@@ -500,7 +496,6 @@ with manticoresearch.ApiClient(configuration) as api_client:
Copy file name to clipboardExpand all lines: docs/MatchFilter.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
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
**query_string** | **str** | | [default to ""]
8
8
**query_fields** | **str** | | [default to "*"]
9
9
10
-
[[Using in search requests]](SearchApi.md#MatchFilter)
10
+
[[Using in search requests]](SearchRequest.md#MatchFilter)
11
11
12
12
[[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/MatchOpFilter.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
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
8
8
**query_fields** | **str** | |
9
9
**operator** | **str** | |
10
10
11
-
[[Using in search requests]](SearchApi.md#MatchOpFilter)
11
+
[[Using in search requests]](SearchRequest.md#MatchOpFilter)
12
12
13
13
[[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/MatchPhraseFilter.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
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
**query_phrase** | **str** | |
8
8
**query_fields** | **str** | |
9
9
10
-
[[Using in search requests]](SearchApi.md#MatchPhraseFilter)
10
+
[[Using in search requests]](SearchRequest.md#MatchPhraseFilter)
11
11
12
12
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments