本文整理汇总了Python中tweepy.streaming方法的典型用法代码示例。如果您正苦于以下问题:Python tweepy.streaming方法的具体用法?Python tweepy.streaming怎么用?Python tweepy.streaming使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tweepy
的用法示例。
在下文中一共展示了tweepy.streaming方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: hist_tweet
# 需要导入模块: import tweepy [as 别名]
# 或者: from tweepy import streaming [as 别名]
def hist_tweet(t_api):
con = ''
try:
while con != 'n' or con != 'N' or con != 'No' or con != 'no':
try:
num_tweets = input('How many tweets (200 maximum): ')
except NameError:
print "[+]ERROR: must be a number value!"
return
targetUsr = raw_input('Enter target user: ')
user = t_api.get_user(targetUsr)
print '\n'
print 'Username: ', user.screen_name
print 'Follower count: ', user.followers_count
print '\n'
target_tweets = t_api.user_timeline(targetUsr,count=num_tweets)
counter = 0
for tweet in target_tweets:
counter += 1
print counter, '-', tweet.text
con = raw_input('Run again?(y/n): ')
if con == 'no' or con == 'n' or con == 'N' or con == 'No':
return
except KeyboardInterrupt:
return
# streaming class for the tweepy lib