Manage ASL magazines and their articles.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
asl-articles/asl_articles/authors.py

29 lines
700 B

""" Handle author requests. """
from flask import jsonify
from asl_articles import app
from asl_articles.models import Author
# ---------------------------------------------------------------------
@app.route( "/authors" )
def get_authors():
"""Get all authors."""
return jsonify( do_get_authors() )
def do_get_authors():
"""Get all authors."""
# get all the authors
return {
r.author_id: _get_author_vals(r)
for r in Author.query #pylint: disable=not-an-iterable
}
def _get_author_vals( author ):
"""Extract public fields from an Author record."""
return {
"author_id": author.author_id,
"author_name": author.author_name
}