tweets
3 rows where favorite_count = 45 and favorited = 1
This data as json, CSV (advanced)
Suggested facets: created_at (date)
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1462113564429361156 | Svelte Society 🧡 1176969867733479424 | 2021-11-20T17:40:13+00:00 | 🏔 #SvelteSummit is happening now! Make sure you don't miss it! Catch it live 📺👇 http://youtu.be/1Df-9EKvZr0 16 talks from all over the world!👇🤯 | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [0, 142] | 0 | 13 | 45 | 1 | 1 | 0 | en | ||||||||||
1462132521139937286 | Gen Ashley 32330308 | 2021-11-20T18:55:32+00:00 | Great to see people IRL here at #SvelteSummit Watch Party in Brooklyn - @AdamRackis @swyx @BrittneyPostma @SvelteSociety @SvelteSirens @sveltejs #javascript #typescript #webdev #webdevelopment #sveltejs #svelte #womenintech https://twitter.com/coderinheels/status/1462132521139937286/photo/1 | Twitter for Android f0976f342215a984184a13a54b26877ece8cebba | 0 | [0, 225] | 0 | 14 | 45 | 1 | 1 | 0 | en | ||||||||||
1467343720936792071 | Mark Erikson 727704217012604928 | 2021-12-05T04:02:59+00:00 | I'm not a frequent podcast listener, but I am _loving_ these deep-dive discussions that Swyx is recording. Great guests, thorough discussion of meaningful topics, and some really good insight into the state of our industry. https://twitter.com/swyx/status/1467304180003917824 | 1467304180003917824 1467304180003917824 | TweetDeck 9335de48b3673c3f69433a34861c115d1d382be3 | 0 | [0, 223] | 1 | 5 | 45 | 1 | 1 | 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]);