Manticore Python client
Сlient for Manticore Search.
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/4.0.0
Requirements.
Minimum Manticore Search version is >= 2.5.1 with HTTP protocol enabled.
| Manticore Search | manticoresearch-python | Python |
|---|---|---|
| dev | manticoresearch-dev | >= 3.4 |
| >= 6.2.0 | >= 3.3.1 | >= 3.4 |
| >= 4.2.1 | >= 2.0.x | >= 3.4 |
| >= 4.0.2 < 4.2.1 | >= 1.0.6 | >= 3.4 |
| >= 2.5.1 < 4.0.2 | >= 1.0.5 | >= 2.7 |
Installation & Usage
pip install
Install the manticoresearch package with pip
pip install manticoresearch-dev
Then import the package:
import manticoresearch
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import manticoresearch
Getting Started
Please follow the installation procedure and then run the following:
from __future__ import print_function
import time
import manticoresearch
from manticoresearch import *
from manticoresearch.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://127.0.0.1:9308
# See configuration.py for a list of all supported configuration parameters.
configuration = manticoresearch.Configuration(
host = "http://127.0.0.1:9308"
)
# Enter a context with an instance of the API client
with manticoresearch.ApiClient(configuration) as api_client:
# Create an instance of the IndexApi API class
api_instance = manticoresearch.IndexApi(api_client)
body = "["'{\"insert\": {\"index\": \"test\", \"id\": 1, \"doc\": {\"title\": \"Title 1\"}}},\\n{\"insert\": {\"index\": \"test\", \"id\": 2, \"doc\": {\"title\": \"Title 2\"}}}'"]" # str |
try:
# Bulk index operations
api_response = api_instance.bulk(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling IndexApi->bulk: %s\n" % e)
# Create an instance of the Search API class
api_instance = manticoresearch.SearchApi(api_client)
# Create SearchRequest
search_request = SearchRequest()
search_request.index='test'
search_request.fullltext_filter=QueryFilter('Title 1')
# The example passes only required values which don't have defaults set
try:
# Perform a search
api_response = api_instance.search(search_request)
pprint(api_response)
except manticoresearch.ApiException as e:
print("Exception when calling SearchApi->search: %s\n" % e)
Documentation
Full documentation on the API Endpoints and Models used is available in docs folder as listed below.
Manticore Search server documentation: https://manual.manticoresearch.com.
Release files for manticoresearch-dev 4.1.24031114
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| manticoresearch-dev-4.1.24031114.tar.gz | 67.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| manticoresearch_dev-4.1.24031114-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:186.9 kB
Release files / manticoresearch-dev-4.1.24031114.tar.gz
| Download URL | manticoresearch-dev-4.1.24031114.tar.gz |
|---|---|
| Size | 67.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cb1eda2c763dff3eca0b3460c5ca15e72a6c745e3f920b08ae7313818f9676e4
|
|
BLAKE2b-256 checksum How to use checksums |
b48fb492aafc6edd06bc965b6d524ed69b236fec9f947cbf6bf893fe4fc976dc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.0.0 CPython/3.10.13
|
Release files / manticoresearch_dev-4.1.24031114-py3-none-any.whl
| Download URL | manticoresearch_dev-4.1.24031114-py3-none-any.whl |
|---|---|
| Size | 119.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7a663292901089c49a3d7c3291f936750c22763f94dabea875992f5d54c15d46
|
|
BLAKE2b-256 checksum How to use checksums |
3fcdc0d811828eb58f2cd7a6418950fa431fc7e7396c417a844560ddd8844495
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/5.0.0 CPython/3.10.13
|