Metadata-Version: 2.1
Name: vsco-dl
Version: 0.3.4
Summary: Tool for downloading VSCO user images and journals
Home-page: https://github.com/tecome/vsco-dl
Author: tecome
Author-email: tecome@protonmail.com
License: UNKNOWN
Keywords: vsco dl scrape download image
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# vsco-dl

vsco-dl allows you to scrape and download a VSCO user's images/videos and journals.

### Installation

To install vsco-dl:

```bash
$ pip install vsco-dl
```

To update vsco-dl:

```bash
 $ pip install vsco-dl --upgrade
```


## Usage

```bash
 # 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>
```


## Options

|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


## License

This project is licensed under the GNU GPLv3 License - see [LICENSE](LICENSE) for details



