├── .gitignore ├── README └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | *~ 3 | *.py[co] 4 | .coverage 5 | dist 6 | *.egg 7 | build 8 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.rst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Removal Notice 2 | 3 | This repository has been integrated into the [main python client repository](https://github.com/elastic/elasticsearch-py) and is no longer being maintained. 4 | 5 | We consider this repo to be DEPRECATED and give notice of our plans to remove access to this repository after 30-June-2018. 6 | --------------------------------------------------------------------------------