I am trying to use the Google Slides API for Python to allow users to add presentations to a project.
The presentations must fit a 4:3 aspect ratio due to display limitations. How can I verify a presentation is in this format?
#authentication...
service = build('slides', 'v1', credentials=creds)
presentation = service.presentations().get(
presentationId=PRESENTATION_ID).execute()
presentation.get(...) #what goes here?