README.md: trivial improvements

This commit is contained in:
Alexander Graf 2016-07-28 17:33:57 +02:00
parent 5adbee2273
commit d0e9b711ac

View File

@ -9,29 +9,29 @@ Ensure having [Python](https://www.python.org/) (at least version 3.3) and
After having downloaded instaloader.py, you invoke it with After having downloaded instaloader.py, you invoke it with
``` ```
instaloader.py profile [profile ...] ./instaloader.py profile [profile ...]
``` ```
where `profile` is the name of a profile you want to download. Instead of only one profile, you may where `profile` is the name of a profile you want to download. Instead of only one profile, you may
also specify a list of profiles. also specify a list of profiles.
To later update your local copy of that profile, you may run To later update your local copy of that profile, you may run
``` ```
instaloader.py --fast-update profile [profile ...] ./instaloader.py --fast-update profile [profile ...]
``` ```
When `--fast-update` is given, instaloder terminates when arriving at the first already-downloaded When `--fast-update` is given, instaloder terminates when arriving at the first already-downloaded
picture. picture.
Instaloader can also be used to **download private profiles**. To do so, invoke it with Instaloader can also be used to **download private profiles**. To do so, invoke it with
``` ```
instaloader.py --login username profile [profile ...] ./instaloader.py --login=your_username profile [profile ...]
``` ```
When invoked like this, it also **stores the session cookies** in a file in `/tmp`, which will later When invoked like this, it also **stores the session cookies** in a file in `/tmp`, which will be
be reused when `--login` is given. So you can download private profiles **non-interactively** when reused later when `--login` is given. So you can download private profiles **non-interactively**
you already have a valid session cookies file. when you already have a valid session cookies file.
The `--quiet` option makes it also **suitable as a cron job**. The `--quiet` option makes it also **suitable as a cron job**.
To get a list of other helpful flags, run `instaloader.py --help`. To get a list of other helpful flags, run `./instaloader.py --help`.
## Usage as library ## Usage as library