get infoq search result

This commit is contained in:
hillerliao
2022-10-22 09:50:16 +08:00
parent f01b87b14f
commit a38d458e7d
3 changed files with 44 additions and 0 deletions

View File

@@ -73,6 +73,11 @@ def infoq_profile(category=''):
from rsshub.spiders.infoq.profile import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/infoq/search/<string:category>')
def infoq_search(category=''):
from rsshub.spiders.infoq.search import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/dxzg/notice')
def dxzg_notice():
from rsshub.spiders.dxzg.notice import ctx