Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michabirklbauer/vsco_downloader
A python script to download images and videos in full resolution from VSCO.
https://github.com/michabirklbauer/vsco_downloader
downloader python vsco
Last synced: 4 days ago
JSON representation
A python script to download images and videos in full resolution from VSCO.
- Host: GitHub
- URL: https://github.com/michabirklbauer/vsco_downloader
- Owner: michabirklbauer
- License: mit
- Created: 2021-04-05T18:15:37.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T11:37:46.000Z (3 months ago)
- Last Synced: 2024-08-01T21:52:01.112Z (3 months ago)
- Topics: downloader, python, vsco
- Language: Python
- Homepage: https://michabirklbauer.github.io/vsco_downloader/
- Size: 32.2 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
![vsco_downloader.py](https://github.com/michabirklbauer/vsco_downloader/workflows/vsco_downloader.py/badge.svg)
# VSCO Downloader
A python script to download images and videos in full resolution from [VSCO](https://vsco.co/).
## Requirements
- Python (version 3.7 or higher)## Features
- Download a single image or video by running the script and providing the link as input.
- Download a single image or video by passing the link as a parameter to the script.
- Download multiple images or videos by passing a filelist to the script (as parameter).## Usage
Examples:
- ### Download a single image:
```shell
python vsco_downloader.py
Please enter an URL to an VSCO post e. g. https://vsco.co/emilieristevski/media/561f648001146426743090fa
https://vsco.co/emilieristevski/media/561f648001146426743090fa
```
- ### Download a single image using parameters:
```shell
python vsco_downloader.py https://vsco.co/emilieristevski/media/561f648001146426743090fa
```
- ### Download multiple image using a filelist (e.g. links.txt):
```shell
python vsco_downloader.py links.txt
```
- ### Using the python functions:
```python
from vsco_downloader import downloadsample_image = "https://vsco.co/emilieristevski/media/561f648001146426743090fa"
sample_video = "https://vsco.co/emmasuz/media/5c61243fbbb29b6617e3d26c"# downloading an image
download(sample_image)# downloading a video
download(sample_video)# downloading a video but not the thumbnail
download(sample_video, get_video_thumbnails = False)
```
- ### Using the web interface:
A web version is available [here](http://89.58.32.151:8503/).