Remove all images sadly
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
0b4d923c3b
commit
2700e0302d
3
twi.py
3
twi.py
@ -16,12 +16,15 @@ def fetchVolume(title, metadata, volume_title, output_dir, links):
|
||||
|
||||
a_remove = chapter_content.find_all("a")
|
||||
hr_remove = chapter_content.find_all("hr")
|
||||
img_remove = chapter_content.find_all("img")
|
||||
div_remove = chapter_content.select("div.tiled-gallery")
|
||||
|
||||
for removed in a_remove:
|
||||
removed.decompose()
|
||||
for removed in hr_remove:
|
||||
removed.decompose()
|
||||
for removed in img_remove:
|
||||
removed.decompose()
|
||||
for removed in div_remove:
|
||||
removed.decompose()
|
||||
|
||||
|
Reference in New Issue
Block a user