Query Suggestion Options
Last word completion
Keyboard Layouts
GitHub

👀 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

72 results 17 ms in manticoresoftware/manticoresearch-python

Remove the upper bound for urllib3 dependency

nikitagrygorievnikitagrygoriev · 2025-05-12 · 2 · #24

Yes, this looks reasonable. We will check the client templates to ensure the change doesn't affect anything else there and will update the client.

Nick-S-2018Nick-S-2018 · 2025-04-24

1👍1

Remove the upper bound for urllib3 dependency

nikitagrygorievnikitagrygoriev · 2025-05-12 · 2 · #24

Done in https://github.com/manticoresoftware/manticoresearch-python/commit/d863dc7211a846b688d9693344b009f662cb7cf6

Nick-S-2018Nick-S-2018 · 2025-05-08

1❤️1

SearchApi seems to generate a wrong endpoint

akordeckiakordecki · 2021-07-09 · 4 · #3

Fixed in https://github.com/manticoresoftware/manticoresearch-python/commit/9c340ac6fc2d351f86e104071a65c8ea7c62cc20. Closing the issue

sanikolaevsanikolaev · 2021-07-09

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

This works fine for me: snikolaev@dev:~$ cat manticore.py import datetime import mysql.connector cnx = mysql.connector.connect(host='127.0.0.1', port='9306') cursor = cnx.cursor() cursor.execute("drop table if exists t") cursor.execute("create table t(f …

l1t1l1t1 · 2023-07-19

Encoding issue with UtilsApi sql method when using UTF-8 charset

narayanacharya6narayanacharya6 · 2022-02-24 · 4 · #6

bug

I've tested the issue with the current dev build - it's fixed there.

Nick-S-2018Nick-S-2018 · 2022-02-24

Documentation lacking for SearchRequest parameters

narayanacharya6narayanacharya6 · 2023-04-20 · 8 · #7

bug

This python client is based on Manticore HTTP JSON protocol, it doesn't natively support ranker=... as well as other search options, so you are right - you need to use sql method for that. We'll look into the other issues

sanikolaevsanikolaev · 2022-02-23

1👍1

Documentation lacking for SearchRequest parameters

narayanacharya6narayanacharya6 · 2023-04-20 · 8 · #7

bug

Is adding support for OPTIONS over HTTP in the pipeline? If not, can it be added? :)

narayanacharya6narayanacharya6 · 2022-02-23

Documentation lacking for SearchRequest parameters

narayanacharya6narayanacharya6 · 2023-04-20 · 8 · #7

bug

Yes. We had it in our internal ticketing system. I've just exposed it to github - https://github.com/manticoresoftware/manticoresearch/issues/715

sanikolaevsanikolaev · 2022-02-23

1👍1

Documentation lacking for SearchRequest parameters

narayanacharya6narayanacharya6 · 2023-04-20 · 8 · #7

bug

Unfortunately, I raised two questions in one ticket (sorry for this): "match" in the HTTP query is not equivalent to the the MATCH in the SQL syntax. Support for OPTIONS over HTTP in SearchRequest . Can you please clarify what was done?

narayanacharya6narayanacharya6 · 2022-03-03

Documentation lacking for SearchRequest parameters

narayanacharya6narayanacharya6 · 2023-04-20 · 8 · #7

bug

The issue about OPTIONS is here https://github.com/manticoresoftware/manticoresearch/issues/715.

sanikolaevsanikolaev · 2022-03-03

2👍2

Documentation lacking for SearchRequest parameters

narayanacharya6narayanacharya6 · 2023-04-20 · 8 · #7

bug

➤ Nick Sergeev commented: Done in 29e878b0

githubmanticoregithubmanticore · 2022-03-03

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

Sorry I'm not sure I can translate your question properly. Could you please ask in English and best if you provide some examples: code examples or smth which works via just SQL, but doesn't work out when you try to do the same via the python client

sanikolaevsanikolaev · 2021-11-12

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

Sorry I'm not sure I can translate your question properly. Could you please ask in English and best if you provide some examples: code examples or smth which works via just SQL, but doesn't work out when you try to do the same via the python client I need …

lljqylljqy · 2021-11-14

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

This is a known issue. The root cause is the HTTP JSON protocol didn't allow multiple queries. That is already fixed in the latest Manticore Search dev version. Please give it a try. You can find dev packages on https://repo.manticoresearch.com/ or use …

sanikolaevsanikolaev · 2021-11-15

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

That is already fixed in the latest Manticore Search dev version Forget it. There was a bug.

sanikolaevsanikolaev · 2021-11-15

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

That is already fixed in the latest Manticore Search dev version Forget it. There was a bug. I want to use it in a production environment. Is there a better recommended tools to use manticore for multi-queries in a python environment?

lljqylljqy · 2021-11-20

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

Is there a better recommended tools to use manticore for multi-queries in a python environment? Just use python mysql connector instead of the python client.

sanikolaevsanikolaev · 2021-11-20

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

You are talking about pymysql (https://pypi.org/project/PyMySQL/)? I have used this toolkit, and found that the execution of first_sql and second_sql at the same time, and finally only the execution result of first_sql ;And there is another problem. When …

lljqylljqy · 2021-11-20

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

This works fine for me: snikolaev@dev:~$ cat manticore.py import datetime import mysql.connector cnx = mysql.connector.connect(host='127.0.0.1', port='9306') cursor = cnx.cursor() cursor.execute("drop table if exists t") cursor.execute("create table t(f …

sanikolaevsanikolaev · 2021-11-20

利用SQL进行multi-query

lljqylljqy · 2023-07-19 · 10 · #4

mysql.connector.connect(host='127.0.0.1', port='9306') Thank you for your help, I solved the problem!

lljqylljqy · 2021-11-20