Skip to content

michabirklbauer/vsco_downloader

Repository files navigation

vsco_downloader.py

VSCO Downloader

A simple python library to extract raw image and video paths from VSCO posts.

Requirements

  • Python (version 3.10 or higher)

Usage

Examples:

  • Using the python functions:

    >>> from vsco import get_links
    
    >>> sample_image = "https://vsco.co/emilieristevski/media/561f648001146426743090fa"
    >>> sample_video = "https://vsco.co/emmasuz/media/5c61243fbbb29b6617e3d26c"
    
    >>> # downloading an image
    >>> get_links(sample_image)
    ['https://im.vsco.co/1/51a9887c50f8151/561f648001146426743090fa/vsco_101515.jpg']
    
    >>> # downloading a video
    >>> get_links(sample_video)
    ['https://im.vsco.co/aws-us-west-2/aaf64f/597912/5c61243fbbb29b6617e3d26c/5c61243fbbb29b6617e3d26c.jpg',
     'https://img.vsco.co/aaf64f/597912/5c61243fbbb29b6617e3d26c/5c61243fbbb29b6617e3d26c.mp4']
    
    >>> # downloading a video but not the thumbnail
    >>> get_links(sample_video, get_video_thumbnails = False)
    ['https://img.vsco.co/aaf64f/597912/5c61243fbbb29b6617e3d26c/5c61243fbbb29b6617e3d26c.mp4']
  • Using the web interface:

    A web version is available here.

About

A simple python library to extract raw image and video paths from VSCO posts.

Topics

Resources

License

Stars

Watchers

Forks

Packages