Skip to content

Commit

Permalink
[poipiku] extract full 'descriptions' (#4066)
Browse files Browse the repository at this point in the history
don't cut it off after the first line
  • Loading branch information
mikf committed May 15, 2023
1 parent 5037013 commit 011e460
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gallery_dl/extractor/poipiku.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def items(self):
"user_name" : text.unescape(extr(
'<h2 class="UserInfoUserName">', '</').rpartition(">")[2]),
"description": text.unescape(extr(
'class="IllustItemDesc" >', '<')),
'class="IllustItemDesc" >', '</h1>')),
"_http_headers": {"Referer": post_url},
}

Expand Down Expand Up @@ -172,7 +172,9 @@ class PoipikuPostExtractor(PoipikuExtractor):
"count": 3,
"keyword": {
"count": "3",
"description": "ORANGE OASISボスネタバレ",
"description": "ORANGE OASISボスネタバレ<br />曲も大好き<br />"
"2枚目以降はほとんど見えなかった1枚目背景"
"のヒエログリフ小ネタです𓀀",
"num": int,
"post_category": "SPOILER",
"post_id": "5776587",
Expand Down

0 comments on commit 011e460

Please sign in to comment.