add chouti user

This commit is contained in:
hillerliao
2021-11-11 12:47:22 +08:00
parent bf1754318a
commit 22ae4f21a8
3 changed files with 46 additions and 0 deletions

View File

@@ -175,6 +175,11 @@ def chouti_search(category=''):
from rsshub.spiders.chouti.search import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/chouti/user/<string:category>')
def chouti_user(category=''):
from rsshub.spiders.chouti.user import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/mp/tag/<string:mp>/<string:tag>')
def mp_tag(mp='', tag=''):
from rsshub.spiders.mp.tag import ctx