Metadata-Version: 2.4
Name: elasticsearch7-compatible
Version: 10.0.3
Summary: Python client for Elasticsearch
Home-page: https://github.com/elastic/elasticsearch-py
License: Apache-2.0
Project-URL: Documentation, https://elasticsearch-py.readthedocs.io
Project-URL: Source Code, https://github.com/elastic/elasticsearch-py
Project-URL: Issue Tracker, https://github.com/elastic/elasticsearch-py/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3<3,>=1.21.1
Requires-Dist: certifi
Provides-Extra: develop
Requires-Dist: requests<3.0.0,>=2.0.0; extra == "develop"
Requires-Dist: coverage; extra == "develop"
Requires-Dist: mock; extra == "develop"
Requires-Dist: pyyaml; extra == "develop"
Requires-Dist: pytest; extra == "develop"
Requires-Dist: pytest-cov; extra == "develop"
Requires-Dist: sphinx<1.7; extra == "develop"
Requires-Dist: sphinx_rtd_theme; extra == "develop"
Requires-Dist: black; extra == "develop"
Requires-Dist: jinja2; extra == "develop"
Provides-Extra: docs
Requires-Dist: sphinx<1.7; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"
Provides-Extra: requests
Requires-Dist: requests<3.0.0,>=2.4.0; extra == "requests"
Provides-Extra: async
Requires-Dist: aiohttp<4,>=3; extra == "async"
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# elasticsearch7-compatible

[![PyPI](https://img.shields.io/pypi/v/elasticsearch7-compatible)](https://pypi.org/project/elasticsearch7-compatible)

Python client for Elasticsearch 7.x with modern dependencies support.

## Installation

```bash
pip install elasticsearch7-compatible
```

## Usage

```python
from elasticsearch import Elasticsearch

es = Elasticsearch(['http://localhost:9200'])
```

## License

Apache License 2.0
