this repo has no description
0
fork

Configure Feed

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

Use archive_ in README

+4 -4
+3 -3
README.md
··· 234 234 235 235 You can request an archive of your Twitter data by [following these instructions](https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive). 236 236 237 - Twitter will send you a link to download a `.zip` file. You can import the contents of that file into a set of tables in a new database file called `archive.db` (each table beginning with the `archive-` prefix) using the `import` command: 237 + Twitter will send you a link to download a `.zip` file. You can import the contents of that file into a set of tables in a new database file called `archive.db` (each table beginning with the `archive_` prefix) using the `import` command: 238 238 239 239 $ twitter-to-sqlite import archive.db ~/Downloads/twitter-2019-06-25-b31f2.zip 240 240 241 241 This command does not populate any of the regular tables, since Twitter's export data does not exactly match the schema returned by the Twitter API. 242 242 243 - It will delete and recreate all of your `archive-*` tables every time you run it. If this is not what you want, run the command against a new SQLite database file name rather than running it against one that already exists. 243 + It will delete and recreate all of your `archive_*` tables every time you run it. If this is not what you want, run the command against a new SQLite database file name rather than running it against one that already exists. 244 244 245 245 You may want to use other commands to populate tables based on data from the archive. For example, to retrieve full API versions of each of the tweets you have favourited in your archive, you could run the following: 246 246 247 247 $ twitter-to-sqlite statuses-lookup archive.db \ 248 - --sql='select tweetId from [archive-like]' \ 248 + --sql='select tweetId from archive_like' \ 249 249 --skip-existing 250 250 251 251 ## Design notes
+1 -1
setup.py
··· 1 1 from setuptools import setup 2 2 import os 3 3 4 - VERSION = "0.8" 4 + VERSION = "0.9" 5 5 6 6 7 7 def get_long_description():