tweets
3 rows where "created_at" is on date 2021-10-18 and retweet_count = 1 sorted by lang
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1449925621375660035 | swyx 33521530 | 2021-10-18T02:29:41+00:00 | One of the reasons I put music into my mixtape (despite it being the least popular segment I do - basically only @PKodmad likes it lol) is b/c I am so inspired by @tiesto. He's been DJing by radio for 14 years, and its the best thing in my podcast feed. https://www.youtube.com/watch?v=39wON-CaIP4&list=PLAxy1YpvZDdW0aXeTdT7kFyyER5QAKWb5&index=76 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 279] | 0 | 1 | 6 | 0 | 0 | 0 | en | ||||||||||
1449936591183433732 | swyx 33521530 | 2021-10-18T03:13:16+00:00 | @elyktrix wonder why https://twitter.com/swyx/status/1449936591183433732/photo/1 | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [10, 20] | 1449935251317276673 | 223739217 | elyktrix | 0 | 1 | 57 | 0 | 0 | 0 | en | |||||||
1450107147321180161 | swyx 33521530 | 2021-10-18T14:31:00+00:00 | Rough developer funnel we're using @temporalio: Hear about us (WoM, Confs, Blog) 🔽Browse Docs/YouTube 🔽Follow @temporalio / Join Slack http://temporal.io/slack 🔽Attend Workshop/Meetup 🔽Build POC 🔽Move to production 🔽Write/Speak about us 🔽Temporal on Job desc ♻️back to top | Twitter Web App 1f89d6a41b1505a3071169f8d0d028ba9ad6f952 | 0 | [0, 272] | 0 | 1 | 13 | 0 | 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]);