Hi Team,
Using the cursor method to fetch the tweets using api.search method
cursor_result = tweepy.Cursor(api.search, q = '#APLAPOLLO -filter:retweets',
tweet_mode='extended',
language='en', since=since_date, until=until_date, count = 100)
Is there a way, we can search for multiple symbols at once?
For ex: In the above code, the code is running only for APLAPOLLO, what if we have multiple symbols and want to include all those in the code and run in one go.