mahrtayyab / tweety

Twitter Scraper
496 stars 67 forks source link

is there a way to set dates? #190

Closed simrankapoorr closed 5 months ago

simrankapoorr commented 5 months ago

what if i want to filter to only get tweets in a certain time range (e.g. may 2022 - may 2023)? how do i do this?

mahrtayyab commented 5 months ago

Use search with advance query

mahrtayyab commented 5 months ago

from tweety import Twitter

# assuming `client` is authenticated instance of `Twitter`
search_results = client.search("github until:2023-05-01 since:2022-05-01")