[pixiv] support short novel URLs

https://www.pixiv.net/n/<ID>
This commit is contained in:
Mike Fährmann
2023-05-21 14:26:30 +02:00
parent e6f55d1555
commit 56b8b8cd36

View File

@@ -756,42 +756,45 @@ class PixivNovelExtractor(PixivExtractor):
subcategory = "novel" subcategory = "novel"
request_interval = 1.0 request_interval = 1.0
pattern = (r"(?:https?://)?(?:www\.|touch\.)?pixiv\.net" pattern = (r"(?:https?://)?(?:www\.|touch\.)?pixiv\.net"
r"/novel/show\.php\?id=(\d+)") r"/n(?:ovel/show\.php\?id=|/)(\d+)")
test = ("https://www.pixiv.net/novel/show.php?id=19612040", { test = (
"count": 1, ("https://www.pixiv.net/novel/show.php?id=19612040", {
"content": "c6f22167f9df7aeaf63b51933b4c8ef6fc5e6a1e", "count": 1,
"keyword": { "content": "c6f22167f9df7aeaf63b51933b4c8ef6fc5e6a1e",
"caption": r"re:「無能な名無し」と呼ばれ虐げられて育った鈴\(すず\)は、", "keyword": {
"comment_access_control": 0, "caption": r"re:「無能な名無し」と呼ばれ虐げられて育った鈴\(すず\)は、",
"create_date": "2023-04-02T15:18:58+09:00", "comment_access_control": 0,
"date": "dt:2023-04-02 06:18:58", "create_date": "2023-04-02T15:18:58+09:00",
"id": 19612040, "date": "dt:2023-04-02 06:18:58",
"is_bookmarked": False, "id": 19612040,
"is_muted": False, "is_bookmarked": False,
"is_mypixiv_only": False, "is_muted": False,
"is_original": True, "is_mypixiv_only": False,
"is_x_restricted": False, "is_original": True,
"novel_ai_type": 1, "is_x_restricted": False,
"page_count": 1, "novel_ai_type": 1,
"rating": "General", "page_count": 1,
"restrict": 0, "rating": "General",
"series": { "restrict": 0,
"id": 10278364, "series": {
"title": "龍の贄嫁〜虐げられた少女は運命の番として愛される〜" "id": 10278364,
"title": "龍の贄嫁〜虐げられた少女は運命の番として愛される〜"
},
"tags": ["和風ファンタジー", "溺愛", "神様", "ヤンデレ", "執着",
"異能", "ざまぁ", "学園", "神嫁"],
"text_length": 5977,
"title": "異母妹から「無能な名無し」と虐げられていた私、"
"どうやら異母妹に霊力を搾取されていたようです(1)",
"user": {
"account": "yukinaga_chifuyu",
"id": 77055466,
},
"visible": True,
"x_restrict": 0,
}, },
"tags": ["和風ファンタジー", "溺愛", "神様", "ヤンデレ", "執着", }),
"異能", "ざまぁ", "学園", "神嫁"], ("https://www.pixiv.net/n/19612040"),
"text_length": 5977, )
"title": "異母妹から「無能な名無し」と虐げられていた私、"
"どうやら異母妹に霊力を搾取されていたようです(1)",
"user": {
"account": "yukinaga_chifuyu",
"id": 77055466,
},
"visible": True,
"x_restrict": 0,
},
})
def __init__(self, match): def __init__(self, match):
PixivExtractor.__init__(self, match) PixivExtractor.__init__(self, match)