mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
[shopify] support windsorstore.com (#1793)
This commit is contained in:
parent
95157e0f4b
commit
4e9f8fe395
@ -1083,5 +1083,11 @@ Consider all sites to be NSFW unless otherwise known.
|
||||
<td>Collections, Products</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Windsorstore</td>
|
||||
<td>https://www.windsorstore.com/</td>
|
||||
<td>Collections, Products</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -48,7 +48,10 @@ BASE_PATTERN = ShopifyExtractor.update({
|
||||
"pattern": r"(?:www\.)?fashionnova\.com",
|
||||
},
|
||||
"omgmiamiswimwear": {
|
||||
"root": "https://www.omgmiamiswimwear.com"
|
||||
"root": "https://www.omgmiamiswimwear.com",
|
||||
},
|
||||
"windsorstore": {
|
||||
"root": "https://www.windsorstore.com",
|
||||
},
|
||||
})
|
||||
|
||||
@ -62,11 +65,11 @@ class ShopifyCollectionExtractor(ShopifyExtractor):
|
||||
("https://www.fashionnova.com/collections/mini-dresses", {
|
||||
"range": "1-20",
|
||||
"count": 20,
|
||||
"archive": False,
|
||||
}),
|
||||
("https://www.fashionnova.com/collections/mini-dresses/?page=1"),
|
||||
("https://www.fashionnova.com/collections/mini-dresses#1"),
|
||||
("https://www.omgmiamiswimwear.com/collections/fajas"),
|
||||
("https://www.windsorstore.com/collections/dresses-ball-gowns"),
|
||||
)
|
||||
|
||||
def metadata(self):
|
||||
@ -100,6 +103,8 @@ class ShopifyProductExtractor(ShopifyExtractor):
|
||||
"count": 5,
|
||||
}),
|
||||
("https://www.fashionnova.com/collections/flats/products/name"),
|
||||
("https://www.windsorstore.com/collections/accessories-belts/products"
|
||||
"/rhine-buckle-dbl-o-ring-pu-strap-belt-073010158001"),
|
||||
)
|
||||
|
||||
def products(self):
|
||||
|
Loading…
Reference in New Issue
Block a user