techcrunch

This commit is contained in:
hillerliao
2020-04-04 19:58:56 +08:00
parent d631712bbe
commit 0e194cb9ed
3 changed files with 35 additions and 2 deletions

View File

@@ -114,4 +114,9 @@ def cls_subject(category=''):
@bp.route('/chaindd/column/<string:category>')
def chaindd_column(category=''):
from rsshub.spiders.chaindd.column import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/techcrunch/tag/<string:category>')
def techcrunch_tag(category=''):
from rsshub.spiders.techcrunch.tag import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))