以下是我的代码.问号是我需要正确语法的地方:
myMentions = tweepy.Cursor (API.mentions).items(1)for mention in myMentions: statusText = mention.text statusUser = mention.????
非常感谢!
解决方法@H_403_10@ 这是最新的tweepy版本对我有用的东西:import tweepyauth = tweepy.OAuthHandler(<consumer_key>,<consumer_secret>)auth.set_access_token(<key>,<secret>)API = tweepy.API(auth)mentions = API.mentions_timeline(count=1)for mention in mentions: print mention.text print mention.user.screen_name
希望有所帮助.
总结以上是内存溢出为你收集整理的python – 来自提及的Tweepy用户ID全部内容,希望文章能够帮你解决python – 来自提及的Tweepy用户ID所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)