We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c979e8 commit d5f8dbeCopy full SHA for d5f8dbe
javsp/web/prestige.py
@@ -51,7 +51,7 @@ def parse_data(movie: MovieInfo):
51
genre_tags = container.xpath("//p[text()='ジャンル:']/following-sibling::div/a")
52
genre = [tag.text.strip() for tag in genre_tags]
53
serial = container.xpath("//p[text()='レーベル:']/following-sibling::div/a/text()")[0].strip()
54
- plot = container.xpath("//h2[text()='商品紹介']/following-sibling::p")[0].text.strip()
+ plot = container.xpath("//h2[text()='商品紹介']/following-sibling::div/p")[0].text.strip()
55
preview_pics = container.xpath("//h2[text()='サンプル画像']/following-sibling::div/div/picture/source/img/@src")
56
preview_pics = [i.split('?')[0] for i in preview_pics]
57
0 commit comments