web-dev-qa-db-ja.com

TypeError:file()は最大3つの引数を取ります(4つが与えられます)

MacでSpyderを使用していて、Python Spyderのバージョンは2.7です。数か月前に次のコードを使用してツイートをこすり取っていましたが、機能しなくなっています。まず、もう使用できませんでした。

from urllib.request import url open

そして今使う

from urllib2 import url open

ただし、以下のコードを実行して次のエラーを受け取ることはできません: "with open( '%s_tweets.csv'%screen_name、 'w'、newline = ''、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
9
bayrah

このコードは、python 3を対象としています。ここで、openは新しいパラメーターを取得します。

  • エンコーディング
  • 改行

python 2では、可能なパラメータは3つだけです:

open(name [、mode [、buffering]])

bufferingはあなたが望むものではありません。他の場所は見つかりません。

これを使用して回避できます

with open('%s_tweets.csv' % screen_name, 'wb') as f:

バイナリでハンドルを開くと、csvモジュールの「空白行」のバグが修正されます。 python 3(「古い」バージョンのみ、最新バージョンでは不要))では、csvファイルをバイナリとして開くことができないため、newline=""を渡す必要があります。

エンコーディングと改行の両方を処理するには、次のように行うことができます here

from io import open

コードの残りの部分は変更しないでください。まあ、ほとんど、あなたはこのようにあなたのタイトルにユニコードをプレフィックスする必要があります:

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"])