···36363737This 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.
38383939-## Retrieving tweets by an account
3939+## Retrieving tweets by specific accounts
40404141-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:
4141+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:
42424343 $ twitter-to-sqlite user-timeline twitter.db
4444 Importing tweets [#####-------------------------------] 2799/17780 00:01:39
···47474848 $ twitter-to-sqlite user-timeline twitter.db -a /path/to/auth.json
49495050-To load tweets for another user, use `--screen_name`:
5050+To load tweets for other users, pass their screen names as arguments:
51515252- $ twitter-to-sqlite user-timeline twitter.db --screen_name=cleopaws
5252+ $ twitter-to-sqlite user-timeline twitter.db cleopaws nichemuseums
53535454Twitter'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.
55555656+You can pass numeric Twitter user IDs instead of screen names using the `--ids` parameter.
5757+5658You 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.
57595858-## Retrieve accounts in bulk
6060+This command also accepts `--sql` and `--attach` options, documented below.
6161+6262+## Retrieve user profiles in bulk
59636064If 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:
6165