add netease comment rank

This commit is contained in:
hillerliao
2022-09-12 22:08:11 +08:00
parent cfcb04afa1
commit 97091d172d
3 changed files with 57 additions and 0 deletions

View File

@@ -230,6 +230,11 @@ def appstore_top(cc='', genreid=''):
from rsshub.spiders.appstore.top import ctx
return render_template('main/atom.xml', **filter_content(ctx(cc,genreid)))
@bp.route('/netease/comment/<string:category>')
def netease_comment(category=''):
from rsshub.spiders.netease.comment import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/aisixiang/search/<string:category>/<string:keywords>')
def aisixiang_search(category='', keywords=''):
from rsshub.spiders.aisixiang.search import ctx