vsco-dl allows you to scrape and download a VSCO user's images/videos and journals.
To install vsco-dl:
$ pip install vsco-dlTo update vsco-dl:
$ pip install vsco-dl --upgrade # Download a user's images/videos
$ vsco-dl -i <username>
# Download a user's journals
$ vsco-dl -j <username>
# Using both at once is fine
$ vsco-dl -ij <username>Images are by default downloaded into ./<username>. You can change this with the -o option.
This option also affects journal downloads, which by default downloads into ./<username>/journal/.
You may specify a file as input. This file must contain one username per line. Blank lines are skipped.
$ vsco-dl -i -f <filename>
| Option | Description |
|---|---|
| -i, --images | Scrape and download user's images/videos |
| -j, --journals | Scrape and download user's journals |
| -f, --filename | Specify filename containing multiple usernames to download |
| -o, --output | Set output directory for user. %u will be replaced by the username |
| -w, --workers | Set max download workers (default is 5) |
| -h, --help | Print help |
This project is licensed under the GNU GPLv3 License - see LICENSE for details