Python: Twitter Sentiment Analysis on Real Time Tweets using TextBlob

This article shows how you can perform Sentiment Analysis on Twitter Real-Time Tweets Data using Python and TextBlob. I have written one article on similar topic on Sentiment Analysis on Tweets using TextBlob. In that article, I had written on using TextBlob and Sentiment Analysis using the NLTK’s Twitter Corpus. In this article, we will … Read more

Python: Twitter Sentiment Analysis using TextBlob

This article shows how you can perform Sentiment Analysis on Twitter Tweet Data using Python and TextBlob. TextBlob provides an API that can perform different Natural Language Processing (NLP) tasks like Part-of-Speech Tagging, Noun Phrase Extraction, Sentiment Analysis, Classification (Naive Bayes, Decision Tree), Language Translation and Detection, Spelling Correction, etc. TextBlob is built upon Natural … Read more

Python: Get Twitter Tweets using ‘Get Old Tweets’ Package

This article shows how you can get/fetch Tweets from Twitter API using a very useful Python package named “Get Old Tweets“. You can perform different tasks using the GetOldTweets, like: – Searching Tweets of any particular user and between any dates – Searching Tweets for any particular hashtag or any text and between any dates … Read more

Python: Get Twitter Tweets using Tweepy Library

This article shows how you can get/fetch Tweets from Twitter API using a popular and easy to use Python Library named “Tweepy“. You can perform different tasks using the Tweepy library like: – Searching Tweets for any particular user – Searching Tweets for any particular hashtag or any text – Getting any user’s data like … Read more

Python NLTK: Twitter Sentiment Analysis [Natural Language Processing (NLP)]

This article shows how you can perform sentiment analysis on Twitter tweets using Python and Natural Language Toolkit (NLTK). Sentiment Analysis means analyzing the sentiment of a given text or document and categorizing the text/document into a specific class or category (like positive and negative). In other words, we can say that sentiment analysis classifies … Read more

Gmail Trick: Use multiple email addresses for your single Gmail account

You can use multiple email addresses with your single Gmail account. Trick #1 Suppose, you have your Gmail account as: firstname.lastname@gmail.com With Gmail, you can also use it as: firstnamelastname@gmail.com or first.name.lastname@gmail.com or first.name.last.name@gmail.com Gmail doesn’t recognize dots as characters within usernames. Email sent to all of these email addresses will go to your original … Read more