this repo has no description
0
fork

Configure Feed

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

Docs for new user-timeline options, closes #35

+9 -5
+9 -5
README.md
··· 36 36 37 37 This will create a file called `auth.json` in your current directory containing the required values. To save the file at a different path or filename, use the `--auth=myauth.json` option. 38 38 39 - ## Retrieving tweets by an account 39 + ## Retrieving tweets by specific accounts 40 40 41 - The `user-timeline` command retrieves all of the tweets posted by the specified user account. It defaults to the account belonging to the authenticated user: 41 + The `user-timeline` command retrieves all of the tweets posted by the specified user accounts. It defaults to the account belonging to the authenticated user: 42 42 43 43 $ twitter-to-sqlite user-timeline twitter.db 44 44 Importing tweets [#####-------------------------------] 2799/17780 00:01:39 ··· 47 47 48 48 $ twitter-to-sqlite user-timeline twitter.db -a /path/to/auth.json 49 49 50 - To load tweets for another user, use `--screen_name`: 50 + To load tweets for other users, pass their screen names as arguments: 51 51 52 - $ twitter-to-sqlite user-timeline twitter.db --screen_name=cleopaws 52 + $ twitter-to-sqlite user-timeline twitter.db cleopaws nichemuseums 53 53 54 54 Twitter's API only returns up to around 3,200 tweets for most user accounts, but you may find that it returns all available tweets for your own user account. 55 55 56 + You can pass numeric Twitter user IDs instead of screen names using the `--ids` parameter. 57 + 56 58 You can use `--since` to retrieve every tweet since the last time you imported for that user, or `--since_id=xxx` to retrieve every tweet since a specific tweet ID. 57 59 58 - ## Retrieve accounts in bulk 60 + This command also accepts `--sql` and `--attach` options, documented below. 61 + 62 + ## Retrieve user profiles in bulk 59 63 60 64 If you have a list of Twitter screen names (or user IDs) you can bulk fetch their fully inflated Twitter profiles using the `users-lookup` command: 61 65