From 1423aaad2dd558cf711472f507b7257763eb3f42 Mon Sep 17 00:00:00 2001 From: Stephen Dodson Date: Tue, 3 Dec 2019 14:07:05 +0000 Subject: [PATCH] Adding minor fixes to last PR --- README.md | 2 +- eland/tests/dataframe/test_to_csv_pytest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)