diff --git a/README.md b/README.md index 13bede9..12deb50 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # What is it? -eland is a elasticsearch client `Python `__ package to analyse, explore and manipulate data that resides in elasticsearch. +eland is a elasticsearch client Python package to analyse, explore and manipulate data that resides in elasticsearch. Where possible the package uses existing Python APIs and data structures to make it easy to switch between numpy, pandas, scikit-learn to their elasticsearch powered equivalents. In general, the data resides in elasticsearch and not in memory, which allows eland to access large datasets stored in elasticsearch. diff --git a/eland/tests/dataframe/test_to_csv_pytest.py b/eland/tests/dataframe/test_to_csv_pytest.py index 96ad6e2..3f3e06a 100644 --- a/eland/tests/dataframe/test_to_csv_pytest.py +++ b/eland/tests/dataframe/test_to_csv_pytest.py @@ -66,4 +66,4 @@ class TestDataFrameToCSV(TestData): print(pd_flights_from_csv.head()) # clean up index - es.indices.delete(test_index) + ES_TEST_CLIENT.indices.delete(test_index)