Hi,
I want to know if is it possible to change some attributes inside a quiz.
In this case, for example, I want to mark the checkbox "Manter os envios anônimos", it must be equivalent to "Keep submissions anonymous" or something like that. Please check the image below:

But I need do to that via API, I use a Python Library from to access Canvas.
GitHub - ucfopen/canvasapi: Python API wrapper for Instructure's Canvas LMS. Easily manage courses, ...
I use the code below to access the course name,
canvas = Canvas(API_URL, API_KEY)
course = canvas.get_course(8718)
print(course.name)
but I don't know how to change the attributes(or parameters) inside a quiz.
How can I do that using the Python library?
Regards,
Fabio