Files
gallery-dl/test/results/vsco.py
Mike Fährmann f1f27eb2ab [vsco] support '/video/' URLs (#4295 #6973)
requires yt-dlp/youtube-dl to handle m3u8 manifests
2025-02-12 19:12:00 +01:00

132 lines
4.1 KiB
Python
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
from gallery_dl.extractor import vsco
__tests__ = (
{
"#url" : "https://vsco.co/missuri",
"#category": ("", "vsco", "user"),
"#class" : vsco.VscoUserExtractor,
"#urls" : "https://vsco.co/missuri/gallery",
},
{
"#url" : "https://vsco.co/missuri",
"#category": ("", "vsco", "user"),
"#class" : vsco.VscoUserExtractor,
"#options" : {"include": "all"},
"#urls" : [
"https://vsco.co/missuri/avatar",
"https://vsco.co/missuri/gallery",
"https://vsco.co/missuri/spaces",
"https://vsco.co/missuri/collection",
],
},
{
"#url" : "https://vsco.co/missuri/gallery",
"#category": ("", "vsco", "gallery"),
"#class" : vsco.VscoGalleryExtractor,
"#pattern" : r"https://image(-aws.+)?\.vsco\.co/[0-9a-f/]+/[\w-]+\.\w+",
"#range" : "1-80",
"#count" : 80,
},
{
"#url" : "https://vsco.co/missuri/images/1",
"#category": ("", "vsco", "gallery"),
"#class" : vsco.VscoGalleryExtractor,
},
{
"#url" : "https://vsco.co/vsco/collection/1",
"#category": ("", "vsco", "collection"),
"#class" : vsco.VscoCollectionExtractor,
"#pattern" : r"https://image(-aws.+)?\.vsco\.co/[0-9a-f/]+/[\w\s-]+\.\w+",
"#range" : "1-80",
"#count" : 80,
},
{
"#url" : "https://vsco.co/spaces/6320a3e1e0338d1350b33fea",
"#category": ("", "vsco", "space"),
"#class" : vsco.VscoSpaceExtractor,
"#pattern" : r"https://image(-aws.+)?\.vsco\.co/[0-9a-f/]+/[\w\s-]+\.\w+",
"#count" : range(100, 150),
},
{
"#url" : "https://vsco.co/missuri/spaces",
"#category": ("", "vsco", "spaces"),
"#class" : vsco.VscoSpacesExtractor,
"#urls" : (
"https://vsco.co/spaces/62e4934e6920440801d19f05",
),
},
{
"#url" : "https://vsco.co/vsco/avatar",
"#category": ("", "vsco", "avatar"),
"#class" : vsco.VscoAvatarExtractor,
"#pattern" : r"https://(?:image-aws-us-west-2|img).vsco.co/3c69ae/304128/652d9f3b39a6007526dda683/vscoprofile-avatar.jpg",
"#sha1_content" : "57cd648759e34a6daefc5c79542ddb4595b9b677",
"id": "652d9f3b39a6007526dda683",
},
{
"#url" : "https://vsco.co/erenyildiz/media/5d34b93ef632433030707ce2",
"#category": ("", "vsco", "image"),
"#class" : vsco.VscoImageExtractor,
"#sha1_url" : "a45f9712325b42742324b330c348b72477996031",
"#sha1_content": "1394d070828d82078035f19a92f404557b56b83f",
"id" : "5d34b93ef632433030707ce2",
"user" : "erenyildiz",
"grid" : "erenyildiz",
"meta" : dict,
"tags" : list,
"date" : "dt:2019-07-21 19:12:11",
"video" : False,
"width" : 1537,
"height" : 1537,
"description": r"re:Ni seviyorum. #vsco #vscox #vscochallenges",
},
{
"#url" : "https://vsco.co/jimenalazof/media/5b4feec558f6c45c18c040fd",
"#category": ("", "vsco", "image"),
"#class" : vsco.VscoImageExtractor,
"#sha1_url" : "c2cf4bd2a627419785613dc5475cbb7c2699f3dd",
"#sha1_content": "e739f058d726ee42c51c180a505747972a7dfa47",
"video": True,
},
{
"#url" : "https://vsco.co/shavonec/video/c5eb34bb-dd13-4d7a-a09c-2a7cd719c9fa",
"#category": ("", "vsco", "video"),
"#class" : vsco.VscoVideoExtractor,
"#pattern" : r"ytdl:https://stream\.mux\.com/3o01XbjqTI4rkeRwPzR17H9i7VSFdWX1h\.m3u8\?token=ey.+",
"date" : "dt:2020-02-04 15:11:52",
"description": "Big news: 🎥 YOU CAN NOW POST VIDEOS TO VSCO ⚡️⚡️💪🏾. \n\n🔗BTS from my #FashionIsActivism panel with the California African American Arts museum ✊🏾",
"extension" : "mp4",
"filename" : "3o01XbjqTI4rkeRwPzR17H9i7VSFdWX1h",
"grid" : "",
"id" : "c5eb34bb-dd13-4d7a-a09c-2a7cd719c9fa",
"meta" : {},
"tags" : [],
"user" : "shavonec",
"video" : True,
"width" : 624,
"height" : 1232,
},
)