0

私はこのスクリプトを書きました:

import tweetstream   
import pymongo  
connection = pymongo.Connection("mongodb://localhost:27017")  
db = connection.socialdata  
words = ["social media", "innovation", "cloud computing"]  
with tweetstream.FilterStream('username', 'password', track=words) as stream:  
    for tweet in stream:         
        db.tweets.save(tweet)

しかし、実行時に次のエラーが表示されます。このエラーを削除する方法を教えてください:

Traceback (most recent call last):
    File "tweet.py", line 9, in <module>
        with tweetstream.FilterStream(username, password, track=words) as stream:
TypeError: __init__() takes at least 5 arguments (4 given)</module>

前もって感謝します。

4

1 に答える 1