I am new to the Canvas API and have basic python understanding.
I can successfully make the API call to get course data with the enrollment grades for a user in JSON format.
https://.instructure.com/api/v1/users//courses.json?include[]=total_scores&enrollment_state=active
I just need to get the following data for courses in the active term for a specified list of students:
- Course Title
- computed current score
- computed current grade
Trying to figure out the best way to parse the JSON data to get this information. Would anyone thsat has done something similar be willing to lend a hand?