Skip to content Skip to sidebar Skip to footer
Showing posts with the label Twitter

Query Regarding Pagination In Tweepy (get_followers) Of A Particular Twitter User

I am fairly new to tweepy and pagination using the cursor class. I have been trying to user the cur… Read more Query Regarding Pagination In Tweepy (get_followers) Of A Particular Twitter User

Tweets Streamed Using Tweepy, Reading Json File In Python

I streamed tweets using the following code class CustomStreamListener(tweepy.StreamListener): d… Read more Tweets Streamed Using Tweepy, Reading Json File In Python

Nltk Can't Using Importerror: Cannot Import Name Compat

This is my code import nltk freq_dist = nltk.FreqDist(words) print freq_dist.keys()[:50] # 50 most … Read more Nltk Can't Using Importerror: Cannot Import Name Compat

Twitter Python Json To Csv

I am new to Python and programing in general. I wrote this script and it runs with out error but is… Read more Twitter Python Json To Csv

Multiproccessing Twitter Api Calls Using Python

I want to do multiproccesing on twitter search API. I have got the code below and it do 1 call ever… Read more Multiproccessing Twitter Api Calls Using Python

Tweepy Twitter Get All Tweet Replies Of Particular User

I am trying to get all replies of this particular user. So this particular user have reply_to_user_… Read more Tweepy Twitter Get All Tweet Replies Of Particular User

Twitter Stream Api Gives Jsondecodeerror("expecting Value", S, Err.value) From None

I am using the stream API of Twitter (through tweepy) to collect tweets matching certain criteria, … Read more Twitter Stream Api Gives Jsondecodeerror("expecting Value", S, Err.value) From None

Importerror: No Module Named 'setuptools'

I'm new to python and have just installed the Python 3, I'm new to Python and I'm facin… Read more Importerror: No Module Named 'setuptools'

Traceback When Updating Status On Twitter Via Tweepy

I've been trying to post the readings from my Rpi on Twitter using tweepy, but first I wanted t… Read more Traceback When Updating Status On Twitter Via Tweepy

Reply To Tweet With Tweepy - Python

I can't seem to get tweepy to work with replying to a specific tweet: auth = tweepy.OAuthHandle… Read more Reply To Tweet With Tweepy - Python

Using Python, How To Use Collect Tweets (using Tweepy) Between Two Dates?

How can i use python and tweepy in order to collect tweets from twitter that are between two given … Read more Using Python, How To Use Collect Tweets (using Tweepy) Between Two Dates?

Twitter Module Python 'module' Object Has No Attribute Oauth

Im trying to follow this basic example here. Code import twitter # XXX: Go to http://dev.twitter.… Read more Twitter Module Python 'module' Object Has No Attribute Oauth

Get Twitter Followers Using Tweepy And Multiple Api Keys

I have multiple twitter dev keys that I am using to get followers from a list of handles. There are… Read more Get Twitter Followers Using Tweepy And Multiple Api Keys

Tweet Classification Into Multiple Categories On (unsupervised Data/tweets)

I want to classify the tweets into predefined categories (like: sports, health, and 10 more). If I … Read more Tweet Classification Into Multiple Categories On (unsupervised Data/tweets)

How Can I Use An Exception Inside An While Loop? List Index Out Of Range

I have the following function: def findTweetWith100PlusRTs(): global tweet_main while tweet… Read more How Can I Use An Exception Inside An While Loop? List Index Out Of Range

Pandas Max Value Index

I have a Pandas DataFrame with a mix of screen names, tweets, fav's etc. I want find the max v… Read more Pandas Max Value Index

How To Collect Tweets About An Event That Are Posted On Specific Date Using Python?

I wish to collect all tweets containing specific keywords(ex:manchesterattack,manchester) that are … Read more How To Collect Tweets About An Event That Are Posted On Specific Date Using Python?

Indentation Error From Heroku For This Python Bot. I Cannot See?

Recently I've deployed a python bot on Heroku and every time I try to run it, this error pops u… Read more Indentation Error From Heroku For This Python Bot. I Cannot See?

How Can I Get Tweets More Than A Year

I'm trying to get twitters timelime using tweepy, but I can't get old tweets that are more … Read more How Can I Get Tweets More Than A Year

Classify Type Of Tweet (tweet/retweet/mention) Based On Tweet Text In Python

Pulling from a couple of different examples, I've been able to create a simple Python script th… Read more Classify Type Of Tweet (tweet/retweet/mention) Based On Tweet Text In Python