예제 #1
0
파일: views.py 프로젝트: pyvec/fb.python.cz
def month_api(year, month):
    posts = month_posts(year, month) or abort(404)
    return jsonify_posts(posts)
예제 #2
0
파일: views.py 프로젝트: pyvec/fb.python.cz
def search_api():
    url = request.args.get("url") or abort(404)
    posts = search_url(url)
    return jsonify_posts(posts)
예제 #3
0
파일: views.py 프로젝트: pyvec/fb.python.cz
def index_api():
    return jsonify_posts(index_posts())