daydreamer
daydreamer

Reputation: 92169

python-twitter streaming api support/example

I was working with python-twitter and realized that twitter provides streaming api to consume tweets in realtime. I found one example that uses pyCurl here

Have anyone tried or know how to use that with python-twitter library? please let me know

Thank you

Upvotes: 10

Views: 11040

Answers (3)

pooya72
pooya72

Reputation: 1083

Tweepy has good modules for streaming. You can see examples here.

Upvotes: 8

Leopd
Leopd

Reputation: 42779

Check out tweetstream for a nice high-level library to access twitter's streaming API.

Upvotes: 6

lprsd
lprsd

Reputation: 87215

python-twitter doesn't support twitter's real time API.

You will have to use Twisted, Tornado or Eventlet to consume such a real time API.

I know not, of any existing open source libraries in Python supporting this service right now.

Upvotes: 1

Related Questions