0
votes
1answer
31 views

Count tweets for a hashtag

i want to know if there are any way to count the hashtags from twitter using the streaming API like hashtags.org i have made a script using python and tweetstream and i can make a count but for TTs ...
0
votes
1answer
49 views

Python non-blocking for loop

I'm using the twitter python package in pip to access the TwitterStream class. The code for this looks somewhat like this: twitter_stream = TwitterStream(auth=UserPassAuth('joe', 'joespassword')) ...
1
vote
0answers
71 views

Automatically escaping JSON

I'm pulling tweets via the Twitter Streaming API and tokenizing the text. I want to store everything. My current code involves with open("tweets.json", "a") as f: f.write(cjson.encode(tweets)) ...
2
votes
0answers
93 views

Timeout Python Tweetstream Api

I am using the following code to get tweets from twitter using Python Tweetstream library but if I use certain words which have no meaning or words for which there are no tweets the streaming get ...
0
votes
1answer
132 views

Avoid 420s with Streaming API?

I have a python script that hooks into the Twitter Streaming API using basic authentication and making use of the tweetstream module. Im gathering around 10 tweets a minute. I was getting ...
0
votes
1answer
180 views

Python - Socket Timeout reason? Network connection loss or nothing to read?

Basically: Is there a way to tell (Python 2.7) when a socket times out if it is because nothing has been delivered to the socket or because the network connection is down? I have a Python application ...
2
votes
1answer
304 views

Twitter Streaming API with Tweepy rejects oauth

I'm trying to access the Twitter stream which I had working previously while improperly using Tweepy. Now that I understand how Tweepy is intended to be used I wrote the following Stream.py module. ...
3
votes
2answers
356 views

The Requests streaming example does not work in my environment

I've been trying to consume the Twitter Streaming API using Python Requests. There's a simple example in the documentation: import requests import json r = ...
0
votes
1answer
90 views

Close Twitty Twister Stream

I'm currently using twitty-twister to stream live Twitter messages into a long-running app, however sometimes I need to restart the stream to change the tracking parameters. Is it possible to ...
1
vote
1answer
470 views

How to handle KeyboardInterrupt (Ctrl-c) nicely with pycurl?

I am writing a Python script using pycurl to consume Twitter's Sreaming API. Here's a short snippet that does exactly that (simply put your Twitter login/password to test it): import pycurl user = ...