Twitter Sentiment Analyser with Stanford NLP
This topic covers the sentiment analysis of any tweets collected from twitter and store the result in database What is sentiment analysis ? Which means the analysis done through computational to determine the given statement is positive or negative . Where it will useful ? Marketing - which find out the people feed back based product success of failure prediction Politics People actions Here we are going to do the sentiment analysis with twitter Pre required : 1. Java 1.8 - required for stanford nlp server to run 2. Tweepy - required to pull / crawl data from the twitter 3. Pycorennlp - required to call stanford nlp server via python Please follow this url https://stanfordnlp.github.io/CoreNLP/corenlp-server.html to install nlp server in your local system. We can also use third party library to find the sentiment analysis. The textblob is one of the library in python. Authentication : In o...