From ec191a0372ae3fddc9e7ae327d6ca5785f305e17 Mon Sep 17 00:00:00 2001 From: Chris Park Date: Thu, 24 Oct 2019 23:39:25 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d926330..ee517e8 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,6 @@ Join the conversation, get support, etc on [stocksight Slack](https://join.slack ## Requirements - Python 3. (tested with Python 3.6.5) -- Elasticsearch 5. -- Kibana 5. -- elasticsearch python module - nltk python module - requests python module - tweepy python module @@ -35,6 +32,11 @@ Join the conversation, get support, etc on [stocksight Slack](https://join.slack - textblob python module - vaderSentiment python module +## Optional installs +- Elasticsearch 5. (Elasticsearch is recommended but can be not used with --noelasticsearch) +- Kibana 5. (Kibana is recommended for searching/visualizing the Elasticsearch indices) +- elasticsearch python module + ### Download ```shell From 28fa2d29f2feaad27176da9d74ce6c3ad9504ca2 Mon Sep 17 00:00:00 2001 From: Chris Park Date: Fri, 25 Oct 2019 00:43:49 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index ee517e8..19ec83f 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,10 @@ Install python requirements using pip `pip install -r requirements.txt` +Download nltk python data + +`python -c "import nltk; nltk.download('punkt')"` + Create a new twitter application and generate your consumer key and access token. https://developer.twitter.com/en/docs/basics/developer-portal/guides/apps.html https://developer.twitter.com/en/docs/basics/authentication/guides/access-tokens.html From 4ad60d31616748a11a21c4ac0bdc5c473e7be46b Mon Sep 17 00:00:00 2001 From: Chris Park Date: Fri, 25 Oct 2019 00:44:54 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19ec83f..1f3cce0 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ Join the conversation, get support, etc on [stocksight Slack](https://join.slack ## Requirements - Python 3. (tested with Python 3.6.5) +- elasticsearch python module - nltk python module - requests python module - tweepy python module @@ -35,7 +36,6 @@ Join the conversation, get support, etc on [stocksight Slack](https://join.slack ## Optional installs - Elasticsearch 5. (Elasticsearch is recommended but can be not used with --noelasticsearch) - Kibana 5. (Kibana is recommended for searching/visualizing the Elasticsearch indices) -- elasticsearch python module ### Download @@ -58,7 +58,7 @@ Install python requirements using pip `pip install -r requirements.txt` -Download nltk python data +Install python nltk data `python -c "import nltk; nltk.download('punkt')"`