VSCO Downloader

VSCO Downloader is a python script to extract and download images and videos in full resolution from VSCO.

from vsco_downloader import download
 
sample_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)

VSCO Downloader is a python script/library to extract and download images and videos in full resolution from VSCO.