diff options
| author | 2021-05-03 23:36:45 -0400 | |
|---|---|---|
| committer | 2021-05-03 23:36:45 -0400 | |
| commit | e7eb1f9779f2e223575ab23a6bc1abf2222e7d27 (patch) | |
| tree | 6cfdc1e3da2143801a598a0ba1182d8f7289dc6d /gallery_dl/extractor/shopify.py | |
| parent | d27dcd4646242d6da8436f14c7b37ce864355858 (diff) | |
New upstream version 1.17.3.upstream/1.17.3
Diffstat (limited to 'gallery_dl/extractor/shopify.py')
| -rw-r--r-- | gallery_dl/extractor/shopify.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gallery_dl/extractor/shopify.py b/gallery_dl/extractor/shopify.py index ba1ab08..1bc353a 100644 --- a/gallery_dl/extractor/shopify.py +++ b/gallery_dl/extractor/shopify.py @@ -58,6 +58,9 @@ BASE_PATTERN = ShopifyExtractor.update({ "root": "https://www.fashionnova.com", "pattern": r"(?:www\.)?fashionnova\.com", }, + "omgmiamiswimwear": { + "root": "https://www.omgmiamiswimwear.com" + }, }) @@ -74,6 +77,7 @@ class ShopifyCollectionExtractor(ShopifyExtractor): }), ("https://www.fashionnova.com/collections/mini-dresses/?page=1"), ("https://www.fashionnova.com/collections/mini-dresses#1"), + ("https://www.omgmiamiswimwear.com/collections/fajas"), ) def metadata(self): @@ -120,6 +124,10 @@ class ShopifyProductExtractor(ShopifyExtractor): "pattern": r"https?://cdn\d*\.shopify.com/", "count": 3, }), + ("https://www.omgmiamiswimwear.com/products/la-medusa-maxi-dress", { + "pattern": r"https://cdn\.shopify\.com/s/files/1/1819/6171/", + "count": 5, + }), ("https://www.fashionnova.com/collections/flats/products/name"), ) |
