[boosty] add 'feed' and 'following' extractors (#2387)

This commit is contained in:
Mike Fährmann
2024-10-03 18:09:31 +02:00
parent aa31c153e3
commit 274d99e7d6
3 changed files with 86 additions and 18 deletions

View File

@@ -97,4 +97,20 @@ __tests__ = (
},
},
{
"#url" : "https://boosty.to/",
"#class" : boosty.BoostyFeedExtractor,
"#auth" : True,
"#range" : "1-40",
"#count" : 40,
},
{
"#url" : "https://boosty.to/app/settings/subscriptions",
"#class" : boosty.BoostyFollowingExtractor,
"#pattern" : boosty.BoostyUserExtractor,
"#auth" : True,
},
)