auth = tweepy.OAuthHandler(consumer_token,consumer_secret)
auth.set_access_token(access_token,access_secret)
api = tweepy.API(auth)
for status in tweepy.Cursor(api.user_timeline, id=screen_name).items(2):
print status.text+'\n'
I just used the above to get user’s timeline with ‘screen_name’.