manticoresearch-python icon indicating copy to clipboard operation
manticoresearch-python copied to clipboard

Official Python client for Manticore Search

Results 4 manticoresearch-python issues
Sort by recently updated
recently updated
newest added

According to your document: https://manual.manticoresearch.com/Creating_a_table/Data_types#Multi-value-integer-(MVA) We will be able to obtain a list for MVA type value. However, by using `UtilsApi` to query the index, it won't act as the...

Adding messages like this to MC seems to break the ability of the client to fetch them: 'msg': '[\x02L\u200bi\u200bl\u200bB\u200br\u200bu\u200bc\u200be\x02] sss' Indexing with the client works fine: {'error': None, 'items': [{'bulk':...

```python import manticoresearch table_name = 'test' manticoresearch_config = manticoresearch.Configuration( host="http://127.0.0.1:9308") manticoresearch_client = manticoresearch.ApiClient(manticoresearch_config) utilsApi = manticoresearch.UtilsApi(manticoresearch_client) indexApi = manticoresearch.IndexApi(manticoresearch_client) utilsApi.sql( f"CREATE TABLE IF NOT EXISTS {table_name}(id bigint fast_fetch='0', title text...

bug

### Bug Description: my replace index py code is here ```python import manticoresearch from datetime import datetime configuration = manticoresearch.Configuration( host="http://127.0.0.1:9308" ) ... def update_index(): try: with manticoresearch.ApiClient(configuration) as api_client:...

bug