mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
# -*- 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 myportfolio
|
|
from gallery_dl import exception
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://andrewling.myportfolio.com/volvo-xc-90-hybrid",
|
|
"#category": ("", "myportfolio", "gallery"),
|
|
"#class" : myportfolio.MyportfolioGalleryExtractor,
|
|
"#sha1_url" : "acea0690c76db0e5cf267648cefd86e921bc3499",
|
|
"#sha1_metadata": "6ac6befe2ee0af921d24cf1dd4a4ed71be06db6d",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://andrewling.myportfolio.com/",
|
|
"#category": ("", "myportfolio", "gallery"),
|
|
"#class" : myportfolio.MyportfolioGalleryExtractor,
|
|
"#pattern" : r"https://andrewling\.myportfolio\.com/[^/?#+]+$",
|
|
"#count" : ">= 6",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://stevenilousphotography.myportfolio.com/society",
|
|
"#category": ("", "myportfolio", "gallery"),
|
|
"#class" : myportfolio.MyportfolioGalleryExtractor,
|
|
"#exception": exception.NotFoundError,
|
|
},
|
|
|
|
{
|
|
"#url" : "myportfolio:https://tooco.com.ar/6-of-diamonds-paradise-bird",
|
|
"#comment" : "custom domain",
|
|
"#category": ("", "myportfolio", "gallery"),
|
|
"#class" : myportfolio.MyportfolioGalleryExtractor,
|
|
"#count" : 3,
|
|
},
|
|
|
|
{
|
|
"#url" : "myportfolio:https://tooco.com.ar/",
|
|
"#category": ("", "myportfolio", "gallery"),
|
|
"#class" : myportfolio.MyportfolioGalleryExtractor,
|
|
"#pattern" : myportfolio.MyportfolioGalleryExtractor.pattern,
|
|
"#count" : ">= 40",
|
|
},
|
|
|
|
)
|