import tweepy
import pandas as pd
consumer_key="xxxxxx"
consumer_secret="xxxxxxx"
access_token="xxxx-xxxx"
access_token_secret="xxxx"
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
from tweepy.streaming import Stream
class Listener(tweepy.Stream):
def on_status(self, status):
print(status.user.screen_name + ":" + status.text)
stream_tweet = Listener(consumer_key, consumer_secret, access_token, access_token_secret)
#streams by keyword
keywords = ['2022', '#python']
stream_tweet.filter(track=keywords)
Error
TypeError Traceback (most recent call last)
<ipython-input-42-4c388804967a> in <module>()
8
9
---> 10 stream_tweet = Listener(consumer_key, consumer_secret, access_token, access_token_secret)
11
12 #streams by keyword
TypeError: __init__() takes 3 positional arguments but 5 were given
Used this code : Working