Python: NLTK Twitter Sentiment Analysis 2

From OnnoWiki
Revision as of 09:16, 2 February 2017 by Onnowpurbo (talk | contribs) (Created page with " Twitter Sentiment Analysis with NLTK Now that we have a sentiment analysis module, we can apply it to just about any text, but preferrably short bits of text, like from...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Twitter Sentiment Analysis with NLTK



Now that we have a sentiment analysis module, we can apply it to just about any text, but preferrably short bits of text, like from Twitter! To do this, we're going to combine this tutorial with the Twitter streaming API tutorial.

The initial code from that tutorial is:

from tweepy import Stream from tweepy import OAuthHandler from tweepy.streaming import StreamListener


  1. consumer key, consumer secret, access token, access secret.

ckey="fsdfasdfsafsffa" csecret="asdfsadfsadfsadf" atoken="asdf-aassdfs" asecret="asdfsadfsdafsdafs"

class listener(StreamListener):

   def on_data(self, data):
       print(data)
       return(True)
   def on_error(self, status):
       print status

auth = OAuthHandler(ckey, csecret) auth.set_access_token(atoken, asecret)

twitterStream = Stream(auth, listener()) twitterStream.filter(track=["car"])

That is enough to print out all of the data for the streaming live tweets that contain the term "car." We can use the json module to load the data var with json.loads(data), and then we can reference the tweet specifically with:

tweet = all_data["text"]

Now that we have a tweet, we can easily pass this through our sentiment_mod module!

from tweepy import Stream from tweepy import OAuthHandler from tweepy.streaming import StreamListener import json import sentiment_mod as s

  1. consumer key, consumer secret, access token, access secret.

ckey="asdfsafsafsaf" csecret="asdfasdfsadfsa" atoken="asdfsadfsafsaf-asdfsaf" asecret="asdfsadfsadfsadfsadfsad"

from twitterapistuff import *

class listener(StreamListener):

   def on_data(self, data):

all_data = json.loads(data)

tweet = all_data["text"] sentiment_value, confidence = s.sentiment(tweet) print(tweet, sentiment_value, confidence)

if confidence*100 >= 80: output = open("twitter-out.txt","a") output.write(sentiment_value) output.write('\n') output.close()

return True

   def on_error(self, status):
       print(status)

auth = OAuthHandler(ckey, csecret) auth.set_access_token(atoken, asecret)

twitterStream = Stream(auth, listener()) twitterStream.filter(track=["happy"])

Along with that, we're also saving the results to an output file, twitter-out.txt.

Next, what data analysis would be complete without graphs? Let's combine yet another tutorial with this one to make a live streaming graph from the sentiment analysis on the Twitter API!



Referensi