Skip to content

Commit 341ba17

Browse files
committed
Regenerated the client
1 parent 028ea00 commit 341ba17

File tree

101 files changed

+3898
-6021
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+3898
-6021
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

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

5-
## Overview
6-
This server was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the
7-
[OpenAPI-Spec](https://openapis.org) from a remote server, you can easily generate a server stub. This
8-
is an example of building a OpenAPI-enabled aiohttp server.
5+
## Requirements.
96

10-
This example uses the [Connexion](https://github.com/zalando/connexion) library on top of aiohttp.
7+
Minimum Manticore Search version is >= 6.2.0 with HTTP protocol enabled.
118

12-
## Requirements
13-
Python 3.7+
9+
| **manticoresearch-python-asyncio* | **Manticore Search** | **Python** | **Compatibility** |
10+
| -----------------------------------| ----------------------------------- | -------------- | ------------------------|
11+
| `manticoresearch-devel` | `dev` (latest development version) | 3.4 or newer | ✅ Fully Compatible |
12+
| 1.0.0 or newer | 9.2.14 or newer | 3.4 or newer | ✅ Fully Compatible |
13+
| 1.0.0 or newer | 6.2.0 to 9.2.14 | 3.4 or newer | ⚠️ Partially Compatible |
1414

1515
## Usage
1616
To run the server, please execute the following from the root directory:

docs/AggComposite.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.agg_composite import AggComposite
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of AggComposite from a JSON string
2018
agg_composite_instance = AggComposite.from_json(json)
2119
# print the JSON string representation of the object
22-
print AggComposite.to_json()
20+
print(AggComposite.to_json())
2321

2422
# convert the object into a dict
2523
agg_composite_dict = agg_composite_instance.to_dict()
2624
# create an instance of AggComposite from a dict
27-
agg_composite_form_dict = agg_composite.from_dict(agg_composite_dict)
25+
agg_composite_from_dict = AggComposite.from_dict(agg_composite_dict)
2826
```
2927
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3028

docs/AggCompositeSource.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ Name | Type | Description | Notes
1313
```python
1414
from manticoresearch.models.agg_composite_source import AggCompositeSource
1515

16-
# TODO update the JSON string below
17-
json = "{}"
1816
# create an instance of AggCompositeSource from a JSON string
1917
agg_composite_source_instance = AggCompositeSource.from_json(json)
2018
# print the JSON string representation of the object
21-
print AggCompositeSource.to_json()
19+
print(AggCompositeSource.to_json())
2220

2321
# convert the object into a dict
2422
agg_composite_source_dict = agg_composite_source_instance.to_dict()
2523
# create an instance of AggCompositeSource from a dict
26-
agg_composite_source_form_dict = agg_composite_source.from_dict(agg_composite_source_dict)
24+
agg_composite_source_from_dict = AggCompositeSource.from_dict(agg_composite_source_dict)
2725
```
2826
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2927

docs/AggCompositeTerm.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ Name | Type | Description | Notes
1313
```python
1414
from manticoresearch.models.agg_composite_term import AggCompositeTerm
1515

16-
# TODO update the JSON string below
17-
json = "{}"
1816
# create an instance of AggCompositeTerm from a JSON string
1917
agg_composite_term_instance = AggCompositeTerm.from_json(json)
2018
# print the JSON string representation of the object
21-
print AggCompositeTerm.to_json()
19+
print(AggCompositeTerm.to_json())
2220

2321
# convert the object into a dict
2422
agg_composite_term_dict = agg_composite_term_instance.to_dict()
2523
# create an instance of AggCompositeTerm from a dict
26-
agg_composite_term_form_dict = agg_composite_term.from_dict(agg_composite_term_dict)
24+
agg_composite_term_from_dict = AggCompositeTerm.from_dict(agg_composite_term_dict)
2725
```
2826
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2927

docs/AggTerms.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.agg_terms import AggTerms
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of AggTerms from a JSON string
2018
agg_terms_instance = AggTerms.from_json(json)
2119
# print the JSON string representation of the object
22-
print AggTerms.to_json()
20+
print(AggTerms.to_json())
2321

2422
# convert the object into a dict
2523
agg_terms_dict = agg_terms_instance.to_dict()
2624
# create an instance of AggTerms from a dict
27-
agg_terms_form_dict = agg_terms.from_dict(agg_terms_dict)
25+
agg_terms_from_dict = AggTerms.from_dict(agg_terms_dict)
2826
```
2927
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3028

docs/Aggregation.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.aggregation import Aggregation
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of Aggregation from a JSON string
2018
aggregation_instance = Aggregation.from_json(json)
2119
# print the JSON string representation of the object
22-
print Aggregation.to_json()
20+
print(Aggregation.to_json())
2321

2422
# convert the object into a dict
2523
aggregation_dict = aggregation_instance.to_dict()
2624
# create an instance of Aggregation from a dict
27-
aggregation_form_dict = aggregation.from_dict(aggregation_dict)
25+
aggregation_from_dict = Aggregation.from_dict(aggregation_dict)
2826
```
2927
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3028

docs/AutocompleteRequest.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,15 @@ Name | Type | Description | Notes
1515
```python
1616
from manticoresearch.models.autocomplete_request import AutocompleteRequest
1717

18-
# TODO update the JSON string below
19-
json = "{}"
2018
# create an instance of AutocompleteRequest from a JSON string
2119
autocomplete_request_instance = AutocompleteRequest.from_json(json)
2220
# print the JSON string representation of the object
23-
print AutocompleteRequest.to_json()
21+
print(AutocompleteRequest.to_json())
2422

2523
# convert the object into a dict
2624
autocomplete_request_dict = autocomplete_request_instance.to_dict()
2725
# create an instance of AutocompleteRequest from a dict
28-
autocomplete_request_form_dict = autocomplete_request.from_dict(autocomplete_request_dict)
26+
autocomplete_request_from_dict = AutocompleteRequest.from_dict(autocomplete_request_dict)
2927
```
3028
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3129

docs/BoolFilter.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,15 @@ Name | Type | Description | Notes
1414
```python
1515
from manticoresearch.models.bool_filter import BoolFilter
1616

17-
# TODO update the JSON string below
18-
json = "{}"
1917
# create an instance of BoolFilter from a JSON string
2018
bool_filter_instance = BoolFilter.from_json(json)
2119
# print the JSON string representation of the object
22-
print BoolFilter.to_json()
20+
print(BoolFilter.to_json())
2321

2422
# convert the object into a dict
2523
bool_filter_dict = bool_filter_instance.to_dict()
2624
# create an instance of BoolFilter from a dict
27-
bool_filter_form_dict = bool_filter.from_dict(bool_filter_dict)
25+
bool_filter_from_dict = BoolFilter.from_dict(bool_filter_dict)
2826
```
2927
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3028

docs/BulkResponse.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,15 @@ Name | Type | Description | Notes
1717
```python
1818
from manticoresearch.models.bulk_response import BulkResponse
1919

20-
# TODO update the JSON string below
21-
json = "{}"
2220
# create an instance of BulkResponse from a JSON string
2321
bulk_response_instance = BulkResponse.from_json(json)
2422
# print the JSON string representation of the object
25-
print BulkResponse.to_json()
23+
print(BulkResponse.to_json())
2624

2725
# convert the object into a dict
2826
bulk_response_dict = bulk_response_instance.to_dict()
2927
# create an instance of BulkResponse from a dict
30-
bulk_response_form_dict = bulk_response.from_dict(bulk_response_dict)
28+
bulk_response_from_dict = BulkResponse.from_dict(bulk_response_dict)
3129
```
3230
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3331

docs/DeleteDocumentRequest.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,15 @@ Name | Type | Description | Notes
1616
```python
1717
from manticoresearch.models.delete_document_request import DeleteDocumentRequest
1818

19-
# TODO update the JSON string below
20-
json = "{}"
2119
# create an instance of DeleteDocumentRequest from a JSON string
2220
delete_document_request_instance = DeleteDocumentRequest.from_json(json)
2321
# print the JSON string representation of the object
24-
print DeleteDocumentRequest.to_json()
22+
print(DeleteDocumentRequest.to_json())
2523

2624
# convert the object into a dict
2725
delete_document_request_dict = delete_document_request_instance.to_dict()
2826
# create an instance of DeleteDocumentRequest from a dict
29-
delete_document_request_form_dict = delete_document_request.from_dict(delete_document_request_dict)
27+
delete_document_request_from_dict = DeleteDocumentRequest.from_dict(delete_document_request_dict)
3028
```
3129
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
3230

0 commit comments

Comments
 (0)