[naver] unescape post 'title' and 'description'

pull/5321/head
Mike Fährmann 7 months ago
parent a71cdab53e
commit f296067797
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -47,8 +47,10 @@ class NaverPostExtractor(NaverBase, GalleryExtractor):
extr = text.extract_from(page) extr = text.extract_from(page)
data = { data = {
"post": { "post": {
"title" : extr('"og:title" content="', '"'), "title" : text.unescape(extr(
"description": extr('"og:description" content="', '"'), '"og:title" content="', '"')),
"description": text.unescape(extr(
'"og:description" content="', '"')).replace(" ", " "),
"num" : text.parse_int(self.post_id), "num" : text.parse_int(self.post_id),
}, },
"blog": { "blog": {

@ -41,9 +41,9 @@ __tests__ = (
}, },
"post": { "post": {
"date" : "dt:2013-03-05 17:48:00", "date" : "dt:2013-03-05 17:48:00",
"description": " ◈     PROMOTER :핑수 ˚ 아담 EDITOR핑수   넵:이크:핑수...", "description": " ◈ PROMOTER :핑수 ˚ 아담 EDITOR핑수 넵:이크:핑수...",
"num" : 70161391809, "num" : 70161391809,
"title" : "[공유] { 합작}  OH, MY GOD! ~ 아 또 무슨 종말을 한다 그래~" "title" : "[공유] { 합작} OH, MY GOD! ~ 아 또 무슨 종말을 한다 그래~",
}, },
"count" : 2, "count" : 2,
"num" : range(1, 2), "num" : range(1, 2),

Loading…
Cancel
Save