1. 动态加载爬虫
2. 修复pyinstaller路径查找子包问题 3. madou的番号处理移动到爬虫内部 4. 过滤javday中多余的tag
This commit is contained in:
@@ -39,3 +39,8 @@ class Javday(Parser):
|
||||
# 删除番号和网站名
|
||||
result = title.replace(self.number,"").replace("- JAVDAY.TV","").strip()
|
||||
return result
|
||||
|
||||
def getTags(self, htmltree) -> list:
|
||||
tags = super().getTags(htmltree)
|
||||
return [tag for tag in tags if 'JAVDAY.TV' not in tag]
|
||||
|
||||
Reference in New Issue
Block a user