Skip to content

Instantly share code, notes, and snippets.

@mtrovo
mtrovo / twitterfilter.py
Created July 29, 2011 01:06
Twitter Streaming API sample using the filter stream
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from tweepy.streaming import StreamListener, Stream
from tweepy.auth import BasicAuthHandler
from tweepy.api import API
import tweepy
class MyStreamListener(StreamListener):
def __init__(self, api=None):