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

Ignoring Retweets When Streaming Twitter Tweets

I am trying to run a simple script that will stream live Tweets. Several attempts to filter out ret… Read more Ignoring Retweets When Streaming Twitter Tweets

Stripping Line Breaks In Tweets Via Tweepy

I'm looking pull data from the Twitter API and create a pipe separated file that I can do furth… Read more Stripping Line Breaks In Tweets Via Tweepy

Importerror: No Module Named Tweepy

I installed pip in a virtual environment. It installed without errors. Here's what I get when I… Read more Importerror: No Module Named Tweepy

Tweepy: Attributeerror: 'tuple' Object Has No Attribute 'followed_by'

I am trying to make a 'simple' script that will unfollow users whom I am following that are… Read more Tweepy: Attributeerror: 'tuple' Object Has No Attribute 'followed_by'

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

Error While Fetching Tweets With Tweepy

I have a Python script that fetch tweets. In the script i use the libary Tweepy . I use a valid au… Read more Error While Fetching Tweets With Tweepy

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

Python Tweepy Writing To Sqlite3 Db

My script below (taken from various resources online) isn't writing to the database. I do not … Read more Python Tweepy Writing To Sqlite3 Db

"incompleteread" Error When Retrieving Twitter Data Using Python

While running this program to retrieve Twitter data using Python 2.7.8 : #imports from tweepy impor… Read more "incompleteread" Error When Retrieving Twitter Data Using Python

Tweepy: Truncated Tweets When Using Tweet_mode='extended'

This is my code in python import tweepy import csv consumer_key = '?' consumer_secret = &#… Read more Tweepy: Truncated Tweets When Using Tweet_mode='extended'

401 Error Using The Streaming Features Of Twitter Api (through Tweepy)

I've got an application which takes advantage of a number of features of the Twitter API. I'… Read more 401 Error Using The Streaming Features Of Twitter Api (through Tweepy)

Twitter Bot With Tweepy - Python

I have been working on a Twitter Bot which replies to people with 'im' in their message wit… Read more Twitter Bot With Tweepy - Python

Rate Limit Reached. Sleeping For:

i'm collecting tweets withe thier replies from Twitter's API to build data set and i'm … Read more Rate Limit Reached. Sleeping For:

Get Tweet Url Or Tweet Id Using Tweepy

So as the question suggests I'm trying to figure out how to get either the tweet id # or the wh… Read more Get Tweet Url Or Tweet Id Using Tweepy

Tweepy Returns 414 Error Retrieving Status Of Only Most Recent Tweet

My code looks like: user = api.get_user('any_user_you_like') for status in api.user_timelin… Read more Tweepy Returns 414 Error Retrieving Status Of Only Most Recent Tweet

Using Tweepy Api Behind Proxy

I have a using Tweepy, a python wrapper for Twitter.I am writing a small GUI application in Python … Read more Using Tweepy Api Behind Proxy