On this Repo created a Twitter Sentiment Analysis on python GUI (Tkinter) library.
I am not provideing twitter API keys. You have get twitter API keys on twitter developer account. Get API Keys
Get a API key and put in the below code section
def click():
user_name = user_value.get()
hash_name = hash_value.get()
#insert here twitter API keys
consumerKey = ""
consumerSecret = ""
accessToken = ""
accessTokenSecret = ""
authenticate = tweepy.OAuthHandler(consumerKey, consumerSecret)
authenticate.set_access_token(accessToken, accessTokenSecret)
api = tweepy.API(authenticate, wait_on_rate_limit = True) # api object
Ckeck out Twitter Sentiment Analysis on python Flask App 👉 click here
Ckeck out Twitter Sentiment Analysis on python Jupyter Notebook 👉 click here
If you find a bug (the website couldn't handle the query and / or gave undesired results), kindly open an issue here by including your search query and the expected result.
If you'd like to request a new function, feel free to do so by opening an issue here. Please include sample queries and their corresponding results.
Known on internet as Yogesh Nile