mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 03:02:50 +01:00
46 lines
1.3 KiB
Python
46 lines
1.3 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 shopify
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://www.fashionnova.com/collections/mini-dresses",
|
|
"#category": ("shopify", "fashionnova", "collection"),
|
|
"#class" : shopify.ShopifyCollectionExtractor,
|
|
"#range" : "1-20",
|
|
"#count" : 20,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.fashionnova.com/collections/mini-dresses/?page=1",
|
|
"#category": ("shopify", "fashionnova", "collection"),
|
|
"#class" : shopify.ShopifyCollectionExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.fashionnova.com/collections/mini-dresses#1",
|
|
"#category": ("shopify", "fashionnova", "collection"),
|
|
"#class" : shopify.ShopifyCollectionExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.fashionnova.com/products/essential-slide-red",
|
|
"#category": ("shopify", "fashionnova", "product"),
|
|
"#class" : shopify.ShopifyProductExtractor,
|
|
"#pattern" : r"https?://cdn\d*\.shopify.com/",
|
|
"#count" : 3,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.fashionnova.com/collections/flats/products/name",
|
|
"#category": ("shopify", "fashionnova", "product"),
|
|
"#class" : shopify.ShopifyProductExtractor,
|
|
},
|
|
|
|
)
|