1

i want to download files from google drive, in especific i want to download some google docs, the problem is that i can´t use the api because the api has a limit of 10 mb to export google docs, so i was trying to use requests module, the problem is that the request isn´t auth so the content of the download is not visible because the google doc is not publicy shared, is there any way to auth my request to download the needed files? i used

r=requests.get(url)

and then

with open(path,wb) as f:
   f.write(r.content)
user14398375
  • 101
  • 9

0 Answers0