I have a Python script that downloads audio attachments and transcribes them. Many of the files it is sent however are large. Google turns these files greater than 25MB into Google Drive links instead of regular attachments.
(As an aside, I found a way to download the files through the Google Drive API but then had the awful trouble of removing them -- as they are not owned by me and result in lots of 403's.)
I'm simply wondering if there is a way I can download the attachment when it comes as a Google Drive link (without using the Drive API).
The method I am using now is taken from the official docs.
Any help is appreciated!