在Twitter上我会找到关于特定关键字的几条推文,然后我想生成用于在文本上发推文的ID的用户名。
如何获取用户名或用户ID?
答案 0 :(得分:0)
这可以根据您的需要进行修改。
Open image in new tab
打印:
import twitter
keyword = 'python'
tweet_results = api.GetSearch(term=keyword,count=2)
for res in tweet_results:
print 'User Id:{id}, username: {un}'.format(id=res.user.id, un=res.user.screen_name)