Skip to main content

Elasticsearch and OpenSearch compatibility library.

Project description

AnySearch is a Elasticsearch and OpenSearch compatibility library. It provides utility functions for smoothing over the differences between the Python libraries with the goal of writing Python code that is compatible on both (including the *search and *search-dsl packages).

See the documentation for more information on what is provided.

PyPI Version Supported Python versions Build Status Documentation Status MIT Coverage

Documentation

Documentation is available on Read the Docs.

Prerequisites

  • Python 3.6, 3.7, 3.8, 3.9 and 3.10.

Installation

Install latest stable version from PyPI:

pip install anysearch

or latest stable version from GitHub:

pip install https://github.com/barseghyanartur/anysearch/archive/main.tar.gz

Configuration

AnySearch automatically detects whether you use Elasticsearch or OpenSearch by looking at which packages are installed. However, if you have both packages installed, you can instruct AnySearch which one do you actually want to use. The way to do that is to set the ANYSEARCH_PREFERRED_BACKEND environment variable to either Elasticsearch or OpenSearch.

For Elasticsearch:

import os
os.environ.setdefault("ANYSEARCH_PREFERRED_BACKEND", "Elasticsearch")

For OpenSearch:

import os
os.environ.setdefault("ANYSEARCH_PREFERRED_BACKEND", "OpenSearch")

Usage

elasticsearch/opensearch

How-to

With elasticsearch you would do:

from elasticsearch import Connection, Elasticsearch

With opensearch you would do:

from opensearch_py import Connection, OpenSearch

With anysearch you would change that to:

from anysearch.search import Connection, AnySearch

elasticsearch-dsl/opensearch-dsl

How-to

With elasticsearch-dsl you would do:

from elasticsearch_dsl import AggsProxy, connections, Keyword
from elasticsearch_dsl.document import Document

With opensearch-dsl you would do:

from opensearch_dsl import AggsProxy, connections, Keyword
from opensearch_dsl.document import Document

With anysearch you would change that to:

from anysearch.search_dsl import AggsProxy, connections, Keyword
from anysearch.search_dsl.document import Document

Testing

Project is covered with tests.

To test with all supported Python versions type:

tox

To test against specific environment, type:

tox -e py39

To test just your working environment type:

pytest

To run a single test in your working environment type:

pytest test_anysearch.py

To run a single test class in a given test module in your working environment type:

pytest test_anysearch.py::AnySearchTestCase

It’s assumed that you have either elasticsearch-dsl or opensearch-dsl installed. If not, install the requirements first.

Writing documentation

Keep the following hierarchy.

=====
title
=====

header
======

sub-header
----------

sub-sub-header
~~~~~~~~~~~~~~

sub-sub-sub-header
^^^^^^^^^^^^^^^^^^

sub-sub-sub-sub-header
++++++++++++++++++++++

sub-sub-sub-sub-sub-header
**************************

License

MIT

Support

For any security issues contact me at the e-mail given in the Author section. For overall issues, go to GitHub.

Author

Artur Barseghyan <artur.barseghyan@gmail.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

anysearch-0.2.1.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

anysearch-0.2.1-py2.py3-none-any.whl (8.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file anysearch-0.2.1.tar.gz.

File metadata

  • Download URL: anysearch-0.2.1.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for anysearch-0.2.1.tar.gz
Algorithm Hash digest
SHA256 91f016947f418a4b9984cca5a876a8bf3aace6ce0e7c5ddb1a8b2278e95b42b4
MD5 1a122bf3a2067a883d6a71dd5fc5d57c
BLAKE2b-256 2f8f94844cf57078af43cc20bb10d6f2946d42c11b7987b172813c52d290dd0f

See more details on using hashes here.

File details

Details for the file anysearch-0.2.1-py2.py3-none-any.whl.

File metadata

  • Download URL: anysearch-0.2.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for anysearch-0.2.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 bc3d2bb5f7ccb0be4aca4d98738922423a1048cbdb1880f45337fa18a7ffe546
MD5 ab8d8763c0fcf6fe9bf8ad67e1e83b03
BLAKE2b-256 f4ccdc84886e2bfb92b7f5a72f1c2e7467337e74ea3a0c31db0afe1ca08b9d63

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