[tumblr] add 'following' & 'followers' extractors (#8018)

This commit is contained in:
Mike Fährmann
2025-08-12 21:14:24 +02:00
parent ab54f71511
commit ca22cb1487
3 changed files with 80 additions and 1 deletions

View File

@@ -403,4 +403,28 @@ __tests__ = (
"#class" : tumblr.TumblrSearchExtractor,
},
{
"#url" : "https://www.tumblr.com/mikf123/following",
"#class" : tumblr.TumblrFollowingExtractor,
"#results" : (
"https://smarties-art.tumblr.com/",
"https://demo.tumblr.com/",
),
"can_show_badges": True,
"description" : str,
"name" : str,
"title" : str,
"tumblrmart_accessories": {},
"updated" : int,
"url" : str,
"uuid" : str,
},
{
"#url" : "https://www.tumblr.com/mikf123/followers",
"#class" : tumblr.TumblrFollowersExtractor,
"#exception": exception.AuthorizationError,
},
)