Skip to content Skip to sidebar Skip to footer

Twint Search Not Working With Date Parameters (python)

I'm trying to run a twint search to retrieve a list of tweets, on which I perform sentiment analysis on. I've created a for loop that iterates through a pandas dataframe of dates a

Solution 1:

Had a similar problem. Used advanced search feature of twitter to get the search modified as searchstr = "(search string) until:2021-02-19 since:2021-02-17)"

I would recommend using all the advanced search syntax from Twitter website and include that in c.Search = searchstr rather than including other parameters for c.

Post a Comment for "Twint Search Not Working With Date Parameters (python)"