geethuaj

TweetsExtract

Mar 31st, 2017
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.63 KB | None | 0 0
  1. from tkinter import *
  2. import re
  3. import tweepy
  4. from tweepy import OAuthHandler
  5. from textblob import TextBlob
  6.  
  7.  
  8.  
  9.  
  10. def popup():
  11. Mypopup=Toplevel()
  12. Mypopup.geometry("900x400")
  13. Mypopup.configure(bg="white")
  14. Mypopup.title("Search review - BuyOrNot")
  15. e = Entry(Mypopup)
  16. e.pack()
  17.  
  18.  
  19. def clr():
  20.  
  21. w5.destroy()
  22. w6.destroy()
  23. w7.destroy()
  24. a1.destroy()
  25. a2.destroy()
  26.  
  27.  
  28.  
  29. def search():
  30. text = e.get()
  31. consumer_key 'xxxxx'
  32. consumer_secret = 'xxx'
  33. access_token = 'xxxxxxxxx'
  34. access_token_secret = 'xxxx'
  35. # create OAuthHandler object
  36. auth = OAuthHandler(consumer_key, consumer_secret)
  37. # set access token and secret
  38. auth.set_access_token(access_token, access_token_secret)
  39. # create tweepy API object to fetch tweets
  40. api = tweepy.API(auth)
  41. def clean_tweet(tweet):
  42. return ' '.join(re.sub("(@[A-Za-z0-9]+)|([^0-9A-Za-z \t])|(\w+:\/\/\S+)", " ", tweet).split())
  43. def get_tweet_sentiment(tweet):
  44. # create TextBlob object of passed tweet text
  45. analysis = TextBlob(clean_tweet(tweet))
  46. # set sentiment
  47. if (analysis.sentiment.polarity > 0 and analysis.sentiment.subjectivity>0.6 ):
  48. return 'positive'
  49. elif (analysis.sentiment.polarity == 0 and analysis.sentiment.subjectivity>0.6):
  50. return 'neutral'
  51. elif analysis.sentiment.subjectivity>0.6:
  52. return 'negative'
  53. def get_tweets(query, count = 300):
  54. # empty list to store parsed tweets
  55. tweets = []
  56.  
  57. # call twitter api to fetch tweets
  58. fetched_tweets = api.search(q = query, count = count)
  59. # parsing tweets one by one
  60. print(len(fetched_tweets))
  61. for tweet in fetched_tweets:
  62. # empty dictionary to store required params of a tweet
  63. parsed_tweet = {}
  64. # saving text of tweet
  65. parsed_tweet['text'] = tweet.text
  66. # saving sentiment of tweet
  67. if "http" in tweet.text:
  68. parsed_tweet['sentiment'] = ""
  69. else:
  70. parsed_tweet['sentiment'] = get_tweet_sentiment(tweet.text)
  71. # appending parsed tweet to tweets list
  72. if tweet.retweet_count > 0:
  73. # if tweet has retweets, ensure that it is appended only once
  74. if parsed_tweet not in tweets:
  75. tweets.append(parsed_tweet)
  76. else:
  77. tweets.append(parsed_tweet)
  78. return tweets
  79.  
  80.  
  81. # creating object of TwitterClient Class
  82.  
  83. # calling function to get tweets
  84. tweets = get_tweets(query =text, count = 20000)
  85.  
  86. # picking positive tweets from tweets
  87. ptweets = [tweet for tweet in tweets if tweet['sentiment'] == 'positive']
  88. # percentage of positive tweets
  89. global w5,w6,w7,a1,a2
  90. w5 = Label(Mypopup, fg="red", bg="yellow",text="Positive tweets percentage: {} %".format(100*len(ptweets)/len(tweets)))
  91. w5.pack(pady=20)
  92. #print("Positive tweets percentage: {} %".format(100*len(ptweets)/len(tweets)))
  93. # picking negative tweets from tweets
  94. ntweets = [tweet for tweet in tweets if tweet['sentiment'] == 'negative']
  95. # percentage of negative tweets
  96. #print("Negative tweets percentage: {} %".format(100*len(ntweets)/len(tweets)))
  97. w6 = Label(Mypopup,fg="red", bg="yellow",text="Negative tweets percentage: {} %".format(100*len(ntweets)/len(tweets)))
  98. w6.pack(pady=20)
  99. # percentage of neutral tweets
  100. #print("Neutral tweets percentage: {} % ".format(100*(len(tweets) - len(ntweets) - len(ptweets))/len(tweets)))
  101. w7 = Label(Mypopup,fg="red", bg="yellow",text="Neutral tweets percentage: {} % ".format(100*(len(tweets) - len(ntweets) - len(ptweets))/len(tweets)))
  102. w7.pack(pady=20)
  103. # printing first 5 positive tweets
  104. print(len(ntweets))
  105. print(len(ptweets))
  106. print("\n\nPositive tweets:")
  107. for tweet in ptweets[:200]:
  108. print(tweet['text'].encode("utf-8"))
  109. #a1 = Label(Mypopup, width="120", bg="pale violet red", fg="white",text=tweet['text'].encode("utf-8"))
  110. #a1.pack(pady=20)
  111. # printing first 5 negative tweets
  112. print("\n\nNegative tweets:")
  113. for tweet in ntweets[:200]:
  114. print(tweet['text'].encode("utf-8"))
  115. #a2 = Label(Mypopup, bg="pale violet red", fg="white", width="120",text=tweet['text'].encode("utf-8"))
  116. #a2.pack(pady=20)
  117. w4=Button(Mypopup, text="Search review", bg="pale violet red", fg="white",width="20",height="4",command=search)
  118. w4.pack(pady=20)
  119. w8=Button(Mypopup, text="Clear", bg="pale violet red", fg="white",width="20",height="4",command=clr)
  120. w8.pack(pady=20)
  121.  
  122.  
  123. root = Tk()
  124. root.configure(bg="white")
  125.  
  126. root.title("BuyOrNot")
  127. root.geometry("900x400")
  128.  
  129.  
  130.  
  131. w1 = Button(root, text="Search product reviews", bg="red", fg="white",width="40",height="10",command=popup)
  132. w1.pack(pady =20)
  133.  
  134. w2 = Button(root, text="About", bg="green", fg="black",width="40",height="10")
  135. w2.pack(pady=20)
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142. root.mainloop()
Add Comment
Please, Sign In to add comment