[shopify] support loungeunderwear.com (closes #2053)

This commit is contained in:
Mike Fährmann
2021-11-24 23:43:49 +01:00
parent 93cef78450
commit f4ea216c95
2 changed files with 12 additions and 0 deletions

View File

@@ -1101,6 +1101,12 @@ Consider all sites to be NSFW unless otherwise known.
<td>Collections, Products</td>
<td></td>
</tr>
<tr>
<td>Loungeunderwear</td>
<td>https://loungeunderwear.com/</td>
<td>Collections, Products</td>
<td></td>
</tr>
<tr>
<td>Omg Miami Swimwear</td>
<td>https://www.omgmiamiswimwear.com/</td>

View File

@@ -53,6 +53,10 @@ BASE_PATTERN = ShopifyExtractor.update({
"windsorstore": {
"root": "https://www.windsorstore.com",
},
"loungeunderwear": {
"root": "https://loungeunderwear.com",
"pattern": r"(?:[a-z]+\.)?loungeunderwear\.com",
},
})
@@ -70,6 +74,7 @@ class ShopifyCollectionExtractor(ShopifyExtractor):
("https://www.fashionnova.com/collections/mini-dresses#1"),
("https://www.omgmiamiswimwear.com/collections/fajas"),
("https://www.windsorstore.com/collections/dresses-ball-gowns"),
("https://loungeunderwear.com/collections/apparel"),
)
def metadata(self):
@@ -105,6 +110,7 @@ class ShopifyProductExtractor(ShopifyExtractor):
("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"),
("https://de.loungeunderwear.com/products/ribbed-crop-top-black"),
)
def products(self):