eastmoney report

This commit is contained in:
hillerliao
2020-03-08 22:53:50 +08:00
parent 468ba996e7
commit 37dddb4ac7
3 changed files with 44 additions and 1 deletions

View File

@@ -94,4 +94,9 @@ def csrc_audit(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)))
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/eastmoney/report/<string:type>/<string:category>')
def eastmoney_report(category='', type=''):
from rsshub.spiders.eastmoney.report import ctx
return render_template('main/atom.xml', **filter_content(ctx(type,category)))