Skip to main content

Python client for Manticore Search

Project description

Manticore Python client

Сlient for Manticore Search.

Requirements.

Minimum Manticore Search version is >= 2.5.1 with HTTP protocol enabled.

Manticore Search manticoresearch-python Python
>= 6.2.0 4.0.0 >= 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

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

manticoresearch-4.0.0.tar.gz (64.5 kB view details)

Uploaded Source

Built Distribution

manticoresearch-4.0.0-py3-none-any.whl (112.6 kB view details)

Uploaded Python 3

File details

Details for the file manticoresearch-4.0.0.tar.gz.

File metadata

  • Download URL: manticoresearch-4.0.0.tar.gz
  • Upload date:
  • Size: 64.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for manticoresearch-4.0.0.tar.gz
Algorithm Hash digest
SHA256 d3c1799e037392fadfc681735d87d6fc874bd0c2b33c4134a2e678a73e8a9727
MD5 2216da750ee001820183c1380e56b375
BLAKE2b-256 231974f64356e491a94e02245d3d37c2dbe89319adec41e2f524dea0e239698e

See more details on using hashes here.

File details

Details for the file manticoresearch-4.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for manticoresearch-4.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 af3ccea764657b9a0c9c76734b999709eced77464bf38a2c3c4d0c6ecb0ead8c
MD5 22a5545d72262be4f6bf8edb20fb204c
BLAKE2b-256 d6037476506408787328035ebf871cd8bf3f3347c2f4af6bda6aa8eb87020c25

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page