twitter date range #9138
twitter date range
#9138
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
freely2597
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i'm tried to download between a range of dates and abort (or in my case switch to the next user on the list)
i cannot figure out the correct filter syntax to do this and have it abort.
this one downloaded nothing and i'm guessing cause of the abort's placement
--filter "datetime(2025, 11, 1) <= date or < datetime(2025, 12, 1) or abort()"this one downloaded stuff outside the date range (like 2026-1 to current date)
--filter "datetime(2025, 11, 1) <= date or abort() < datetime(2025, 12, 1)"this one also downloaded stuff outside of the date range
--filter "datetime(2025, 11, 1) or abort() <= date < datetime(2025, 12, 1)"this one downloaded nothing
--filter "datetime(2025, 12, 1) <= date < datetime(2025, 11, 1) or abort()"i just want to download images between two dates of my choosing and once there are no more images in that range, move on to the next username in my list
Beta Was this translation helpful? Give feedback.
All reactions