Closed simrankapoorr closed 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?
Use search with advance query
from tweety import Twitter # assuming `client` is authenticated instance of `Twitter` search_results = client.search("github until:2023-05-01 since:2022-05-01")
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?