diff --git a/api_app.py b/api_app.py index fa3284f..de4f9f8 100644 --- a/api_app.py +++ b/api_app.py @@ -116,7 +116,7 @@ class Packets(Resource): data = select_frames(conn, n = n, from_ = from_, url_params = request.args.to_dict()) # Sort by created date, descending (https://stackoverflow.com/a/45266808) #data.sort(key=operator.itemgetter('created'), reverse=True) - return {data}, 200 # return data and 200 OK code + return {'data':data}, 200 # return data and 200 OK code # Read config config = read_config()