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