Hello!
I'm working on an academic project based on Twitter data collecting. Before generating the JSON with tweets from a chosen user, like in twitter_get_user_timeline.py I'd like to select only tweets created in a certain day.
How do I do that?
for status in page:
if status.created_at like Mon Sep 10:
f.write(json.dumps(status._json)+"\n")
Hello! I'm working on an academic project based on Twitter data collecting. Before generating the JSON with tweets from a chosen user, like in twitter_get_user_timeline.py I'd like to select only tweets created in a certain day. How do I do that?
Is that close? Thanks