1
0
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:
Mike Fährmann 2021-08-28 18:34:12 +02:00
parent 95157e0f4b
commit 4e9f8fe395
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
2 changed files with 13 additions and 2 deletions

View File

@ -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>

View File

@ -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):