Hi. I’m trying to stream data on tweets using he full archive api. I have premium access. I am able to view tweets and see all of the information when I print the entire tweet. I am also able to print some of the tweet attributes specifically like print(tweet.all_text) or print(tweet.id). However, when I try other attributes such as created_at by doing print(tweet.created_at), I get the error that “Tweet object has no attribute created_at”. I am interested in also collecting attribute data for attributes like favorite_count and retweet_count. I would appreciate it if someone could point me in the right direction as to printing these individual attributes.
Thanks
Update: Will using a method like .split work on the Tweets coming from the full archive? I tried it with the standard API and its Tweets, which are given as a string. Does the full archive output tweets as str objects, allowing the .split to work? I would test this myself, but do not want to use up my API requests for the month which I need to collect data for my project.