mirror of
https://github.com/d0zingcat/RSSHub-python.git
synced 2026-05-23 15:09:46 +00:00
fix businesswire item link
This commit is contained in:
@@ -8,7 +8,7 @@ def parse(post):
|
|||||||
item = {}
|
item = {}
|
||||||
item['title'] = post.css('title::text').extract_first().strip()
|
item['title'] = post.css('title::text').extract_first().strip()
|
||||||
item['description'] = post.css('description::text').extract_first().strip(']]>')
|
item['description'] = post.css('description::text').extract_first().strip(']]>')
|
||||||
item['link'] = post.css('guid::text').extract_first()
|
item['link'] = post.css('link::text').extract_first()
|
||||||
item['pubDate'] = post.css('pubDate::text').extract_first()
|
item['pubDate'] = post.css('pubDate::text').extract_first()
|
||||||
return item
|
return item
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user