[pictoa] update
- simplify code - update URL patterns - update tests - update docs/supportedsites
This commit is contained in:
@@ -6,44 +6,67 @@
|
||||
|
||||
from gallery_dl.extractor import pictoa
|
||||
|
||||
|
||||
__tests__ = (
|
||||
{
|
||||
"#url" : "https://www.pictoa.com/albums/anna-kendrick-busty-in-a-strapless-red-dress-out-in-nyc-3229225.html",
|
||||
"#category": ("", "pictoa", "album"),
|
||||
"#class" : pictoa.PictoaAlbumExtractor,
|
||||
"#pattern" : r"https://?(?:[\w]+\.)?pictoa\.com/albums/[\w-]+/[\d]+.html",
|
||||
"#count" : 16,
|
||||
"album_id" : "3229225",
|
||||
"date" : None,
|
||||
"title" : "Anna Kendrick busty in a strapless red dress out in NYC",
|
||||
"tags" : ["Anna Kendrick", "Celebrity"]
|
||||
"#url" : "https://www.pictoa.com/albums/anna-kendrick-busty-in-a-strapless-red-dress-out-in-nyc-3229225.html",
|
||||
"#class" : pictoa.PictoaAlbumExtractor,
|
||||
"#pattern": pictoa.PictoaImageExtractor.pattern,
|
||||
"#count" : 16,
|
||||
|
||||
"album_id" : "3229225",
|
||||
"album_title": "Anna Kendrick busty in a strapless red dress out in NYC",
|
||||
"tags" : ["Anna Kendrick", "Celebrity"],
|
||||
},
|
||||
|
||||
{
|
||||
# verify pagination works
|
||||
"#url" : "https://www.pictoa.com/albums/oscars-2020-red-carpet-4010403.html",
|
||||
"#category": ("", "pictoa", "album"),
|
||||
"#class" : pictoa.PictoaAlbumExtractor,
|
||||
"#pattern" : r"https://?(?:[\w]+\.)?pictoa\.com/albums/[\w-]+/[\d]+.html",
|
||||
"#count" : 182,
|
||||
"album_id" : "4010403",
|
||||
"date" : None,
|
||||
"title" : "Oscars 2020 Red Carpet",
|
||||
"tags" : ['Celebrity', 'Red']
|
||||
"#url" : "https://www.pictoa.com.de/albums/oscars-2020-red-carpet-4010403.html",
|
||||
"#comment": "verify pagination works",
|
||||
"#class" : pictoa.PictoaAlbumExtractor,
|
||||
"#pattern": pictoa.PictoaImageExtractor.pattern,
|
||||
"#count" : 182,
|
||||
|
||||
"album_id" : "4010403",
|
||||
"album_title": "Oscars 2020 Red Carpet",
|
||||
"tags" : ['Celebrity', 'Red'],
|
||||
},
|
||||
|
||||
{
|
||||
# null tags
|
||||
"#url" : "https://www.pictoa.com/albums/carl-virkus-149024.html",
|
||||
"#category": ("", "pictoa", "album"),
|
||||
"#class" : pictoa.PictoaAlbumExtractor,
|
||||
"#count" : 1,
|
||||
"album_id" : "149024",
|
||||
"tags" : []
|
||||
"#url" : "https://it.pictoa.com/albums/carl-virkus-149024.html",
|
||||
"#comment": "null tags",
|
||||
"#class" : pictoa.PictoaAlbumExtractor,
|
||||
"#urls" : "https://www.pictoa.com/albums/carl-virkus-149024/2221031.html",
|
||||
|
||||
"album_id" : "149024",
|
||||
"album_title": "Carl Virkus",
|
||||
"tags" : [],
|
||||
},
|
||||
|
||||
{
|
||||
"#url" : "https://www.pictoa.com/albums/anna-kendrick-showing-cleavage-at-the-56th-annual-grammy-awards-3233172/75206264.html",
|
||||
"#category": ("", "pictoa", "image"),
|
||||
"#class" : pictoa.PictoaImageExtractor,
|
||||
"#pattern" : r"https://s1.pictoa.com/media/galleries/168/930/[\w\d]+/[\w\d]+.jpg",
|
||||
"id" : "75206264",
|
||||
"#url" : "https://www.pictoa.com/albums/anna-kendrick-showing-cleavage-at-the-56th-annual-grammy-awards-3233172/75206264.html",
|
||||
"#class": pictoa.PictoaImageExtractor,
|
||||
"#urls" : "https://s1.pictoa.com/media/galleries/168/930/168930594a8750dfd3e/3233172594a8759dcc3a.jpg",
|
||||
|
||||
"album_id" : "3233172",
|
||||
"album_title": "Anna Kendrick showing cleavage at the 56th Annual GRAMMY Awards",
|
||||
"extension" : "jpg",
|
||||
"filename" : "3233172594a8759dcc3a",
|
||||
"id" : "75206264",
|
||||
"url" : "https://s1.pictoa.com/media/galleries/168/930/168930594a8750dfd3e/3233172594a8759dcc3a.jpg"
|
||||
},
|
||||
|
||||
{
|
||||
"#url" : "https://nl.pictoa.com/albums/kandi-barbour-3840809/94038192.html",
|
||||
"#class": pictoa.PictoaImageExtractor,
|
||||
"#urls" : "https://s2.pictoa.com/media/galleries/294/452/29445260009fa5b68e4/384080960009fb51e389.jpg",
|
||||
"#sha1_content": "152595069016da89565eb3d8e73df835afd22e2c",
|
||||
|
||||
"album_id" : "3840809",
|
||||
"album_title": "Kandi Barbour",
|
||||
"extension" : "jpg",
|
||||
"filename" : "384080960009fb51e389",
|
||||
"id" : "94038192",
|
||||
"url" : "https://s2.pictoa.com/media/galleries/294/452/29445260009fa5b68e4/384080960009fb51e389.jpg",
|
||||
},
|
||||
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user