DEV Community

Discussion on: Sentiment analysis on Trump's tweets using Python 🐍

Collapse
 
aminabahri4 profile image
amina bahri

plz how can i extract arabic data i try this code but no result
import tweepy
from tweepy import Stream
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener

class Listener(StreamListener):
def on_data(self, data):
file = open("twee.txt", "a")
file.write(data + "\n")
file.close()
print("Record saved")

def on_error(self, status):
    print(status)

auth = OAuthHandler("", "")
auth.set_access_token("","")

tweets = tweepy.Cursor(tweepy.api.search, lang= "Ar").items()

Stream = Stream(auth, Listener())
Stream.filter(track = ["informatique"])