If you want to stream specific user time-line:
1) Find his/her ID with this website or google for How to find twitter ID.
2) Use following code:
from tweepy import OAuthHandler from tweepy import Stream from tweepy import StreamListener listener = StreamListener() auth = OAuthHandler(config.API_KEY, config.API_SECRET) auth.set_access_token(config.ACCESS_TOKEN, config.ACCESS_TOKEN_SECRET) stream = Stream(auth, listener) stream.filter(follow=['3511430425']) # user ID for random account