merge #4841: [fapello] support '.su' TLD (#4840)

This commit is contained in:
Mike Fährmann
2023-11-22 20:18:32 +01:00
2 changed files with 62 additions and 10 deletions

View File

@@ -26,6 +26,7 @@ __tests__ = (
"#category": ("", "fapello", "post"),
"#class" : fapello.FapelloPostExtractor,
"#pattern" : r"https://cdn\.fapello\.com/content/v/l/vladislava-661/1000/vladislava-661_0693\.mp4",
"#exception": exception.NotFoundError,
"model" : "vladislava-661",
"id" : 693,
@@ -40,6 +41,16 @@ __tests__ = (
"#exception": exception.NotFoundError,
},
{
"#url" : "https://fapello.su/grace-charis-gracecharisxo/2038266/",
"#category": ("", "fapello", "post"),
"#class" : fapello.FapelloPostExtractor,
"model" : "grace-charis-gracecharisxo",
"id" : 2038266,
"type" : "photo",
},
{
"#url" : "https://fapello.com/hyoon/",
"#category": ("", "fapello", "model"),
@@ -55,6 +66,15 @@ __tests__ = (
"#class" : fapello.FapelloModelExtractor,
},
{
"#url" : "https://fapello.su/grace-charis-gracecharisxo/",
"#category": ("", "fapello", "model"),
"#class" : fapello.FapelloModelExtractor,
"#pattern" : fapello.FapelloPostExtractor.pattern,
"#range" : "1-50",
"#count" : 50,
},
{
"#url" : "https://fapello.com/top-likes/",
"#category": ("", "fapello", "path"),
@@ -64,6 +84,15 @@ __tests__ = (
"#count" : 10,
},
{
"#url" : "https://fapello.su/top-likes/",
"#category": ("", "fapello", "path"),
"#class" : fapello.FapelloPathExtractor,
"#pattern" : fapello.FapelloModelExtractor.pattern,
"#range" : "1-10",
"#count" : 10,
},
{
"#url" : "https://fapello.com/videos/",
"#category": ("", "fapello", "path"),
@@ -79,12 +108,24 @@ __tests__ = (
"#class" : fapello.FapelloPathExtractor,
},
{
"#url" : "https://fapello.su/top-followers/",
"#category": ("", "fapello", "path"),
"#class" : fapello.FapelloPathExtractor,
},
{
"#url" : "https://fapello.com/trending/",
"#category": ("", "fapello", "path"),
"#class" : fapello.FapelloPathExtractor,
},
{
"#url" : "https://fapello.su/trending/",
"#category": ("", "fapello", "path"),
"#class" : fapello.FapelloPathExtractor,
},
{
"#url" : "https://fapello.com/popular_videos/twelve_hours/",
"#category": ("", "fapello", "path"),