gpt4 book ai didi

python - 无法使用 Tweepy 下载搜索到的推文

转载 作者:太空宇宙 更新时间:2023-11-03 17:19:27 25 4
gpt4 key购买 nike

我之前使用过以下脚本,但现在它不起作用。我没有看到任何推文打印在我的终端中(如第 38 行中编码的那样),也没有任何推文存储在我的 csv 中。我不知道这是什么问题。

import tweepy
import csv
import time

access_token = "xxxxxxxxxx"
access_token_secret = "xxxxxxxxxx"
consumer_key = "xxxxxxxxxx"
consumer_secret = "xxxxxxxxxx"


auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)

print "Starting search..."

#
# Open/Create a file to append data
csvFile = open('somesearch.csv', 'a')
#Use csv Writer
csvWriter = csv.writer(csvFile)


searchTerms = ["#Xfactor", "#Yfactor"]


tweets= tweepy.Cursor(api.search,q=[searchTerms], \
since="2015-10-18",
until="2015-10-23",
include_entities=True).items(999999999)

#csvWriter.writerow([tweet.created_at, tweet.id_str, tweet.screen_name, tweet.user_id, tweet.coordinates, tweet.place, tweet.text.encode('utf-8'), tweet.retweet_count, tweet.favorite_count])
#tweet.in_reply_to_user_id_str, tweet.in_reply_to_screen_name, tweet.in_reply_to_status_id_str, tweet.retweeted, tweet.truncated, tweet.source

while True:
try:
for tweet in tweets:
print tweet.created_at, tweet.text.encode('utf-8')
csvWriter.writerow([tweet.created_at, tweet.id_str, tweet.author.name.encode('utf-8'), tweet.author.screen_name.encode('utf-8'),
tweet.user.location.encode('utf-8'), tweet.coordinates, tweet.text.encode('utf-8'), tweet.retweet_count, tweet.favorite_count])
except tweepy.TweepError:
time.sleep(60 * 15)
continue
except StopIteration:
break

print "Done!"

最佳答案

问题出在这一行:

tweets= tweepy.Cursor(api.search,q=[searchTerms],

您所做的是创建一个包含列表的列表。看一下这段代码:

searchTerms = ["#Xfactor", "#Yfactor"]
q=[searchTerms]

print(searchTerms)
>>> ['#Xfactor', '#Yfactor']
print(type(q))
>>> [['#Xfactor', '#Yfactor']]

您要搜索的不是 searchTerms,而是它的列表。

所以现在您感兴趣的推文必须包含文字['#Xfactor', '#Yfactor']。要解决该问题,请将 q 更改为:

tweets= tweepy.Cursor(api.search,q=searchTerms,

关于python - 无法使用 Tweepy 下载搜索到的推文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33324781/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com