Adding minor fixes to last PR

This commit is contained in:
Stephen Dodson 2019-12-03 14:07:05 +00:00
parent 57857277cd
commit 1423aaad2d
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# What is it?
eland is a elasticsearch client `Python <https://www.python.org/>`__ 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.

View File

@ -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)