👀 While it's loading, feel free to check out the other repositories:
🔔 To get a notification when it's ready, leave your email here:
By entering your email, you agree to receive notifications and marketing-related emails
Filter by reset
Remove the upper bound for urllib3 dependency
urllib3 is currently pinned at >= 1.25.3, < 2.1.0 in setup.py and requirements.txt . I was not able to find any reason to forbid using newer versions of urllib3 (unless somebody is using versions of Python that are no longer maintained – 3.7 or 3.8). Just …
nikitagrygoriev · 2025-07-09 ·   4 · #24 
Remove the upper bound for urllib3 dependency
nikitagrygoriev · 2025-07-09 ·   4 · #24 
Nick-S-2018 · 2025-04-24 
The configuration object is missing in line 38. It should be a parameter for ApiClient.
jonyr · 2022-02-03 ·   1 · #5 
Remove the upper bound for urllib3 dependency
nikitagrygoriev · 2025-07-09 ·   4 · #24 
Nick-S-2018 · 2025-05-08 
Nick-S-2018 · 2025-01-30 ·   0 · #19 
Remove the upper bound for urllib3 dependency
nikitagrygoriev · 2025-07-09 ·   4 · #24 
nikitagrygoriev · 2025-07-08 
We need to generate a new version of the client based on another OpenApi generator template (presumably, https://github.com/OpenAPITools/openapi-generator/tree/master/modules/openapi-generator/src/main/resources/python-aiohttp ) to be able to support …
Nick-S-2018 · 2025-04-01 ·   1 · #23 
est::size_S
Remove the upper bound for urllib3 dependency
nikitagrygoriev · 2025-07-09 ·   4 · #24 
Nick-S-2018 · 2025-07-09 
Is there a complete introduction to `dsl` for http requests?
For example. I want to know how many tables are there. I will run import manticoresearch config = manticoresearch.Configuration( host = "http://127.0.0.1:9308" ) client = manticoresearch.ApiClient(config) indexApi = manticoresearch.IndexApi(client) …
sangensong · 2021-05-07 ·   3 · #2 
waiting for reply
Deprecation warning on client publish
Nick-S-2018 · 2025-06-04 ·   2 · #25 
bug
Nick-S-2018 · 2025-06-04 
We need to add information about the structure of auto created table to code examples in Readme.
Nick-S-2018 · 2025-02-04 ·   1 · #20 
est::size_S
Deprecation warning on client publish
Nick-S-2018 · 2025-06-04 ·   2 · #25 
bug
github-actions[bot] · 2025-06-04 
We need to fix formatting here: https://github.com/manticoresoftware/manticoresearch-python/blob/master/docs/SearchApi.md#percolate
Nick-S-2018 · 2025-02-04 ·   1 · #21 
est::size_S
SearchApi seems to generate a wrong endpoint
akordecki · 2021-07-09 ·   4 · #3 
sanikolaev · 2021-07-09 
Deprecation warning on client publish
Bug Description: We get a warning when publishing the Python client: /opt/hostedtoolcache/Python/3.10.17/x64/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and …
Nick-S-2018 · 2025-06-04 ·   2 · #25 
bug
lljqy · 2023-07-19 ·   10 · #4 
l1t1 · 2023-07-19 
Implemented the composite aggregation feature
Nick-S-2018 · 2024-04-13 ·   0 · #13 
Encoding issue with UtilsApi sql method when using UTF-8 charset
narayanacharya6 · 2022-02-24 ·   4 · #6 
bug
Nick-S-2018 · 2022-02-24 
Ability to get document via `indexAPI.get`
Currently, I can only filter with searchAPI to get the document via its ID or field, I wonder if you could let indexAPI provide a more easy way to do so.
scruel · 2024-03-21 ·   9 · #12 
Documentation lacking for SearchRequest parameters
narayanacharya6 · 2023-04-20 ·   8 · #7 
bug
sanikolaev · 2022-02-23 
How to filter by the keys of JSON type field?
…>>> utilsApi.sql(f"CREATE TABLE testx(title text, infos json) morphology='stem_en'") >>> indexApi.insert({"index": "testx", "doc": { "title": "test", 'infos': {-1: 1, -2: 1, -3: 2}}}) >>> search_res = searchApi.search( SearchRequest(index="testx", query …
scruel · 2024-05-06 ·   3 · #15 
Documentation lacking for SearchRequest parameters
narayanacharya6 · 2023-04-20 ·   8 · #7 
bug
narayanacharya6 · 2022-02-23 
`UtilsApi` will return MVA type list value as string
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 same: >>> utilsApi …
scruel · 2024-05-07 ·   5 · #14 
Documentation lacking for SearchRequest parameters
narayanacharya6 · 2023-04-20 ·   8 · #7 
bug
sanikolaev · 2022-02-23 
Question about `query` and `filter`s field.
What is the purpose of fulltext_filter and attr_filter ? It seems that your documentation didn't contain such related info about them: Furthermore, I would like to know what is the difference between the following code snippets: search_req = SearchRequest …
scruel · 2024-06-13 ·   3 · #16 
est::size_S
Documentation lacking for SearchRequest parameters
narayanacharya6 · 2023-04-20 ·   8 · #7 
bug
narayanacharya6 · 2022-03-03 
Unsupported value type check only works with `None`
…>>> utilsApi.sql(f"CREATE TABLE testx(num bigint)") [{'total': 0, 'error': '', 'warning': ''}] >>> indexApi.insert({"index": "testx", "doc": {'num': None}}) ... manticoresearch.exceptions.ApiException: (400) Reason: Bad Request HTTP response headers: …
scruel · 2024-06-17 ·   1 · #17 
est::size_S
Documentation lacking for SearchRequest parameters
narayanacharya6 · 2023-04-20 ·   8 · #7 
bug
sanikolaev · 2022-03-03 
Unexpected truncate if text contains null char `\x00`
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 …
scruel · 2024-10-01 ·   4 · #18 
bug
Documentation lacking for SearchRequest parameters
narayanacharya6 · 2023-04-20 ·   8 · #7 
bug
githubmanticore · 2022-03-03 
利用SQL进行multi-query,怎么获取批量查询的结果?
lljqy · 2023-07-19 ·   10 · #4 
lljqy · 2023-07-19 ·   10 · #4 
sanikolaev · 2021-11-12 
SearchApi seems to generate a wrong endpoint
…Hi, I want to try the Python API, but I couldn't send a SearchRequest to localhost. On every request, I'm getting: Exception when calling SearchApi->search: (501) Reason: Not Implemented HTTP response headers: HTTPHeaderDict({'Server': '3.6.0 96d61d8@ …
akordecki · 2021-07-09 ·   4 · #3 
lljqy · 2023-07-19 ·   10 · #4 
lljqy · 2021-11-14 
add missing import statement in IndexApi.md code snippet
hi this is just a small change to make all the code snippets in IndexApi.md runnable
joshuakosasih · 2022-09-05 ·   2 · #9 
lljqy · 2023-07-19 ·   10 · #4 
sanikolaev · 2021-11-15 
sanikolaev · 2024-01-23 ·   0 · #11 
est::size_S
lljqy · 2023-07-19 ·   10 · #4 
sanikolaev · 2021-11-15 
UtilsApi.sql fails with `{"error":"query missing"}` but query works in mysql
Example query fails when called via UtilsApi.sql in python client with {"error":"query missing"} but same query works in mysql client. Steps to reproduce: import manticoresearch configuration = manticoresearch.Configuration(host="http://127.0.0.1:9308") …
narayanacharya6 · 2022-04-07 ·   1 · #8 
lljqy · 2023-07-19 ·   10 · #4 
lljqy · 2021-11-20