Language-filtered-tweet-Analysis

This blog  will show the code with the help of which i've done sentiment analysis and also made an wordcloud after filtration of language. Applicable for all language. In [3]: import tweepy from tweepy import OAuthHandler import os import re In [5]: consumer_key = "--------------------------------" consumer_secret_key = "-------------------------------------" access_token = "-----------------------------------------------------" access_secret = "------------------------------------------" auth = OAuthHandler(consumer_key, … Continue reading Language-filtered-tweet-Analysis

WordCloud-of-tweets-by-@narendramodi

This is the python code used to generate word cloud  for all the recent tweets by Narendra Modi G. Follow this code to generate yours word cloud for specific person In [11]: #import modules for api import tweepy from tweepy import OAuthHandler import os In [2]: consumer_key = "---------------------------" consumer_secret_key = "------------------------------------------------" access_token = "------------------------------------------------" access_secret = … Continue reading WordCloud-of-tweets-by-@narendramodi