python - Tweepy api.search Tweet timestamp? -


i'm using tweepy make little script fetches tweets match query , writes them csv. checks can, , pulls recent 15 tweets. i'm using tweepy's api.search. no problems in actual script. can't find timestamp field tweepy's output. these fields found:

['created_at', 'from_user', 'from_user_id', 'from_user_id_str', 'from_user_name', 'geo', 'id', 'id_str', 'in_reply_to_status_id', 'in_reply_to_status_id_str', 'iso_language_code', 'metadata', 'profile_image_url', 'profile_image_url_https', 'source', 'text', 'to_user', 'to_user_id', 'to_user_id_str', 'to_user_name'] 

unfortunately need timestamp. know if supported? if not, got better python module? if there streaming leverage, might better solution anyway...

so grateful help.

the timestamp created_at field.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -