Esempio n. 1
0
def list_author():
    res = AuthorFacade.list()
    authors = res.get("response").get("substance").get("items")
    return render_template("author/list.html", authors=authors)
Esempio n. 2
0
def list_author():
    res = AuthorFacade.list()
    return jsonify(res)