scrc audit status crawler

This commit is contained in:
hillerliao
2020-02-29 10:56:43 +08:00
parent 3a34d84693
commit 527bdb190c
3 changed files with 56 additions and 0 deletions

View File

@@ -84,4 +84,9 @@ def earningsdate_businesswire():
@bp.route('/jiemian/newsflash/<string:category>')
def jiemian_newsflash(category=''):
from rsshub.spiders.jiemian.newsflash import ctx
return render_template('main/atom.xml', **filter_content(ctx(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)))