this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Instructions on updating favorited_by table with imported likes

+15
+15
README.md
··· 262 262 --sql='select tweetId from archive_like' \ 263 263 --skip-existing 264 264 265 + If you want these imported tweets to then be reflected in the `favorited_by` table, you can do so by applying the following SQL query: 266 + 267 + $ sqlite3 archive.db 268 + SQLite version 3.22.0 2018-01-22 18:45:57 269 + Enter ".help" for usage hints. 270 + sqlite> INSERT OR IGNORE INTO favorited_by (tweet, user) 271 + ...> SELECT tweetId, 'YOUR_TWITTER_ID' FROM archive_like; 272 + <Ctrl+D> 273 + 274 + Replace YOUR_TWITTER_ID with your numeric Twitter ID. If you don't know that ID you can find it out by running the following: 275 + 276 + $ twitter-to-sqlite fetch \ 277 + "https://api.twitter.com/1.1/account/verify_credentials.json" \ 278 + | grep '"id"' | head -n 1 279 + 265 280 ## Design notes 266 281 267 282 * Tweet IDs are stored as integers, to afford sorting by ID in a sensible way