From 68bfef2d22ed4a7239f89401cb39dfa2f1a16e4d Mon Sep 17 00:00:00 2001 From: Ed Savage Date: Wed, 9 Oct 2019 10:54:32 +0100 Subject: [PATCH 1/2] Correct usage example in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 141cf7a..e5d3d4f 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ For example, to explore data in a large elasticsearch index, simply create an el ``` >>> import eland as ed ->>> df = ed.read_es(url='http://localhost:9200', index='reviews') +>>> df = ed.read_es('http://localhost:9200', 'reviews') >>> df.head() reviewerId vendorId rating date From d9ff31adc15a763deaea5d5bdac466991536ea83 Mon Sep 17 00:00:00 2001 From: Ed Savage Date: Wed, 9 Oct 2019 11:55:52 +0100 Subject: [PATCH 2/2] Corrected installation requirements Added modin 0.6.1 and py 1.8.0 to installation requirements --- requirements.txt | 4 +++- setup.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index b3de7a4..07450a2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,10 @@ elasticsearch==7.0.2 elasticsearch-dsl==7.0.0 numpy==1.16.4 -pandas==0.24.2 +pandas==0.25.1 python-dateutil==2.8.0 pytz==2019.1 six==1.12.0 urllib3==1.25.3 +modin==0.6.1 +py==1.8.0 diff --git a/setup.py b/setup.py index 515fe57..117c2a0 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,8 @@ setup(name='eland', install_requires=[ 'elasticsearch', 'elasticsearch_dsl', - 'pandas' + 'pandas', + 'modin', + 'py' ], zip_safe=False)