update scrapinglib

This commit is contained in:
Mathhew
2022-05-27 15:24:29 +08:00
parent d6d0a1687b
commit 9898f2918f
16 changed files with 213 additions and 73 deletions

View File

@@ -57,8 +57,10 @@ class Avsox(Parser):
return [i.strip() for i in tags[2:]] if len(tags) > 2 else []
def getOutline(self, htmltree):
from .storyline import getStoryline
return getStoryline(self.number)
if self.morestoryline:
from .storyline import getStoryline
return getStoryline(self.number)
return ''
def getActors(self, htmltree):
a = super().getActors(htmltree)