财新网滚动新闻

This commit is contained in:
hillerliao
2020-03-08 14:01:28 +08:00
parent 527bdb190c
commit 468ba996e7
3 changed files with 44 additions and 1 deletions

View File

@@ -89,4 +89,9 @@ def jiemian_newsflash(category=''):
@bp.route('/csrc/audit/<string:category>')
def csrc_audit(category=''):
from rsshub.spiders.csrc.audit import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/caixin/scroll/<string:category>')
def caixin_scroll(category=''):
from rsshub.spiders.caixin.scroll import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))