我在Mac上使用Spyder,Spyder上的Python版本是2.7。几个月前我一直在使用以下代码来抓取推文,但现在我发现它已经不再适用了。首先,我再也无法使用:
from urllib.request import url open
现在使用
from urllib2 import url open
但是,我无法运行以下代码并收到以下错误:"打开('%s_tweets.csv'%screen_name,' w',换行='',encoding =' utf-8-sig')as f:TypeError:file()最多需要3个参数(4个给定)"
import sys
from urllib2 import urlopen
default_encoding = 'utf-8'
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""
access_secret = ""
screenNamesList = []
def redirect(url):
page = urlopen(url)
return page.geturl()
def get_all_tweets(screen_name):
#Twitter only allows access to a users most recent 3240 tweets with this method
#authorize twitter, initialize tweepy
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_key, access_secret)
api = tweepy.API(auth, wait_on_rate_limit = True)
#initialize a list to hold all the tweepy Tweets
alltweets = []
#make initial request for most recent tweets (200 is the maximum allowed count)
new_tweets = api.user_timeline(screen_name = screen_name,count=200)
#save most recent tweets
alltweets.extend(new_tweets)
#save the id of the oldest tweet less one
oldest = alltweets[-1].id - 1
#keep grabbing tweets until there are no tweets left to grab
while len(new_tweets) > 0:
#print "getting tweets before %s" % (oldest)
#all subsiquent requests use the max_id param to prevent duplicates
new_tweets = api.user_timeline(screen_name = screen_name,count=200,max_id=oldest)
#save most recent tweets
alltweets.extend(new_tweets)
#update the id of the oldest tweet less one
oldest = alltweets[-1].id - 1
#print "...%s tweets downloaded so far" % (len(alltweets))
#transform the tweepy tweets into a 2D array that will populate the csv
outtweets = [[tweet.id_str, tweet.created_at, tweet.text, tweet.retweet_count, tweet.coordinates, tweet.favorite_count, tweet.author.followers_count, tweet.author.description, tweet.author.location, tweet.author.name] for tweet in alltweets]
#write the csv
with open('%s_tweets.csv' % screen_name, 'w', newline='', encoding='utf-8-sig') as f:
writer = csv.writer(f)
writer.writerow(["id", "created_at", "text", "retweet_count", "coordinates", "favorite_count", "followers_count", "description", "location", "name"])
writer.writerows(outtweets)
pass
if __name__ == '__main__':
#pass in the username of the account you want to download
for i, user in enumerate(screenNamesList):
get_all_tweets(screenNamesList[i])
i+=1
答案 0 :(得分:7)
此代码适用于python 3,其中open
获取新参数:
在python 2中,只有3个参数:
open(name [,mode [,buffering]])
buffering
不是你想要的。其他人无处可寻。
您可以使用
解决此问题with open('%s_tweets.csv' % screen_name, 'wb') as f:
打开二进制句柄修复了"空白行" csv
模块的错误。使用python 3(只有"旧"版本,最新版本不需要),你必须传递newline=""
,因为你无法打开csv文件作为二进制文件。
要处理编码和换行,您可以按照here:
所述进行操作from io import open
并保持其余代码不变。好吧,差不多,你必须为你的标题加上unicode前缀:
writer.writerow([u"id", u"created_at", u"text", u"retweet_count", u"coordinates", u"favorite_count", u"followers_count", u"description", u"location", u"name"])