Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 748 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 748 Bytes

Python Elasticsearch Learning to Rank client

This is an add-on to official Python Elasticsearch client adding support for Elasticsearch Learning to Rank plugin API.

Installation

python -m pip install elasticsearch_ltr

Usage

from elasticsearch import Elasticsearch
from elasticsearch_ltr import LTRClient

client = Elasticsearch()
LTRClient.infect_client(client)

client.ltr.create_feature_store()
...

For more code you may check out tests/ folder.

Running tests

You'll have to run Elasticsearch on localhost:9200 with LTR plugin installed. Then just do

python -m pytest tests/