add bbwc.cn realtime

This commit is contained in:
hillerliao
2022-11-06 17:49:54 +08:00
parent 3db8da9e8c
commit 12eace88e7
4 changed files with 46 additions and 6 deletions

View File

@@ -55,6 +55,11 @@ def chuansongme_articles(category=''):
def ctolib_topics(category=''):
from rsshub.spiders.ctolib.topics import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/bbwc/realtime/<string:category>')
def bbwc_realtime(category=''):
from rsshub.spiders.bbwc.realtime import ctx
return render_template('main/atom.xml', **filter_content(ctx(category)))
@bp.route('/infoq/recommend')