我目前正在从特定帐户获取主题标签的所有推文。
通过此操作,我可以获取主题标签的推文:
tweepy.Cursor(api.search, q='#marketing', rpp=100).items(10)
通过此操作,我可以获取parituclar ID的推文:
tweepy.Cursor(api.user_timeline, id="someid")
我需要将两者结合起来,才能从帐户中获取特定标签的所有推文。 我尝试了多种方法来结合以上两个api调用。
答案 0 :(得分:0)
只需将搜索API与参数with open('received_file'+str(j), 'wb') as f:
print('file opened')
buf=''
sep="\n"
while sep not in buf:
buf+=c.recv(5) #If Text filesize is of 2 bytes, then after receiving 2 bytes the client in merging those 2 bytes with the inside data of Text file
filesize=int(buf)
if not filesize:
break
data=c.recv(filesize)
f.write(data)
f.close
j+=1
一起使用,即可从包含q='#marketing from:user'
的{{1}}获取推文。
答案 1 :(得分:0)
可以直接使用:
tweepy.Cursor(api.search, q="from:screen_name #hashtag")
示例:
tweepy.Cursor(api.search, q="from:someid #marketing")
此问题已在 the tweepy github repo 中提出。
他们应该在文档中添加它。