I have an API, where I need to return data. I want to make a “header”, where I specify the amount of tutors, the call returned. My current function looks like this:
JavaScript
x
23
23
1
def get_matching_tutors(filters):
2
formatted_tutors = []
3
4
matching_tutors = [tutor for tutor in tutor_list if matches_all_filters(filters, tutor)]
5
6
matching_tutors = sorted(matching_tutors, key = lambda i: i['hours'])
7
matching_tutors = sorted(matching_tutors, key = lambda i: i['tutor_amount_of_students'])
8
9
for tutor in matching_tutors:
10
data = {
11
"first_name": tutor["first_name"],
12
"last_name": tutor["last_name"],
13
"mobile_phone": tutor["mobile_phone"],
14
"email": tutor["email"],
15
"status": tutor["status"],
16
"more_courses": tutor["more_courses"],
17
"hours": tutor["hours"],
18
"tutor_amount_of_students": tutor["tutor_amount_of_students"],
19
"teachworks": tutor["teachworks"]
20
}
21
formatted_tutors.append(data)
22
return jsonify(formatted_tutors)
23
This is an example, of the response.
JavaScript
1
35
35
1
[
2
{
3
"email": "TEST@test.dk",
4
"first_name": "TEST",
5
"hours": 0,
6
"last_name": "TEST",
7
"mobile_phone": "",
8
"more_courses": "Yes",
9
"status": "Active",
10
"teachworks": "https://toptutors.teachworks.com/employees/114106",
11
"tutor_amount_of_students": 3
12
},
13
{
14
"email": "Jeppe6721@gmail.com",
15
"first_name": "Jeppe",
16
"hours": 28.0,
17
"last_name": "Vestergaard Nielsen",
18
"mobile_phone": "51781003",
19
"more_courses": "Yes",
20
"status": "Active",
21
"teachworks": "https://toptutors.teachworks.com/employees/133813",
22
"tutor_amount_of_students": 3
23
},
24
{
25
"email": "sidra200265@gmail.com",
26
"first_name": "Sidra",
27
"hours": 52.0,
28
"last_name": "Ahmed",
29
"mobile_phone": "52111671",
30
"more_courses": "Yes",
31
"status": "Active",
32
"teachworks": "https://toptutors.teachworks.com/employees/133751",
33
"tutor_amount_of_students": 3
34
}
35
]
I’d like to add a header, that specifies the amount of tutors/arrays that the response returned. So it would be at the top of the json response, “amount_of_tutors”: (Amount)
Advertisement
Answer
The simplest way is to add this line after the loop and change the return statement:
JavaScript
1
3
1
my_response = {'amount_of_tutors':len(formatted_tutors), 'tutors':formatted_tutors}
2
return jsonify(my_response)
3
But it is doubtful whether there is benefit having that extra key.