From 3db8da9e8c587cd9bcbb382db3047a6e582e2996 Mon Sep 17 00:00:00 2001 From: hillerliao Date: Thu, 3 Nov 2022 22:44:09 +0800 Subject: [PATCH] set app's artistName as author --- rsshub/spiders/appstore/top.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsshub/spiders/appstore/top.py b/rsshub/spiders/appstore/top.py index a94a249..d01d51f 100644 --- a/rsshub/spiders/appstore/top.py +++ b/rsshub/spiders/appstore/top.py @@ -49,7 +49,7 @@ def parse(post): + '

Rating: ' + str( post['userRating']['value'] ) \ + ',数量:' + str( post['userRating']['ratingCount'] ) url_paths = post['shortUrl'].split('/') - item['author'] = post['copyright'] + item['author'] = post['artistName'] del url_paths[-2] item['link'] = '/'.join(url_paths) return item