diff --git a/rsshub/blueprints/main.py b/rsshub/blueprints/main.py index 4bc7734..d6f9e03 100644 --- a/rsshub/blueprints/main.py +++ b/rsshub/blueprints/main.py @@ -163,4 +163,9 @@ def benzinga_ratings(category=''): @bp.route('/chouti/section/') def chouti_section(category=''): from rsshub.spiders.chouti.section import ctx - return render_template('main/atom.xml', **filter_content(ctx(category))) \ No newline at end of file + return render_template('main/atom.xml', **filter_content(ctx(category))) + +@bp.route('/chouti/search/') +def chouti_search(category=''): + from rsshub.spiders.chouti.search import ctx + return render_template('main/atom.xml', **filter_content(ctx(category)))