tweets
6 rows where "created_at" is on date 2021-08-05 and favorite_count = 1
This data as json, CSV (advanced)
id ▼ | user | created_at | full_text | retweeted_status | quoted_status | place | source | truncated | display_text_range | in_reply_to_status_id | in_reply_to_user_id | in_reply_to_screen_name | geo | coordinates | contributors | is_quote_status | retweet_count | favorite_count | favorited | retweeted | possibly_sensitive | lang | scopes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1423079363289878535 | swyx 33521530 | 2021-08-05T00:32:14+00:00 | @ashleymayer @akageleiry sounds like a job for that highest of literary art forms: 🧵👇 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [25, 85] | 1422975926921437184 | 18994034 | ashleymayer | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1423138071415980034 | swyx 33521530 | 2021-08-05T04:25:31+00:00 | @ryanmichela i think about this video alot now as a PM working on open source distsys | Twitter for iPad 574fe4fa937eeb131136f7e3678f32d4ff3078d5 | 0 | [13, 85] | 1423121750116560898 | 226766731 | ryanmichela | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1423156238062276609 | swyx 33521530 | 2021-08-05T05:37:42+00:00 | @scarypockets @drh3 this song isnt about how sweet a watermelon is?? | Twitter for iPad 574fe4fa937eeb131136f7e3678f32d4ff3078d5 | 0 | [20, 68] | 1423153448652972032 | 854801089954185218 | scarypockets | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1423309470227075073 | swyx 33521530 | 2021-08-05T15:46:36+00:00 | @brian_lovin loll cheeky @graphcdn plug there | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [13, 45] | 1423003865247408136 | 465068802 | brian_lovin | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1423326514393669632 | swyx 33521530 | 2021-08-05T16:54:19+00:00 | @biantris_ thank you! | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [11, 21] | 1423314547847409677 | 1338510819743719424 | biantris_ | 0 | 0 | 1 | 0 | 0 | en | ||||||||
1423361516082847747 | swyx 33521530 | 2021-08-05T19:13:24+00:00 | @JustJake thats awful i'm so sorry. | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [10, 35] | 1423274062940237824 | 607528502 | JustJake | 0 | 0 | 1 | 0 | 0 | en |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [tweets] ( [id] INTEGER PRIMARY KEY, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [full_text] TEXT, [retweeted_status] INTEGER, [quoted_status] INTEGER, [place] TEXT REFERENCES [places]([id]), [source] TEXT REFERENCES [sources]([id]), [truncated] INTEGER, [display_text_range] TEXT, [in_reply_to_status_id] INTEGER, [in_reply_to_user_id] INTEGER, [in_reply_to_screen_name] TEXT, [geo] TEXT, [coordinates] TEXT, [contributors] TEXT, [is_quote_status] INTEGER, [retweet_count] INTEGER, [favorite_count] INTEGER, [favorited] INTEGER, [retweeted] INTEGER, [possibly_sensitive] INTEGER, [lang] TEXT, [scopes] TEXT, FOREIGN KEY([retweeted_status]) REFERENCES [tweets]([id]), FOREIGN KEY([quoted_status]) REFERENCES [tweets]([id]) ); CREATE INDEX [idx_tweets_source] ON [tweets] ([source]);