嘗試直接使用Python和Google Drive API導出鏈接響應下載文件。從GoogleDrive下載文件exportlinks
假設我有一個這樣的導出鏈接:
一)https://docs.google.com/feeds/download/documents/export/Export?id=xxxx&exportFormat=docx
要下載這個文件,我只需將其粘貼到瀏覽器,並將該文件會自動下載到我的下載文件夾。
我該如何在Python中做同樣的事情?
EX:module.download_file_using_url(https://docs.google.com/feeds/download/documents/export/Export?id=xxxx&exportFormat=docx)
可能的重複[如何通過HTTP使用Python下載文件?](http://stackoverflow.com/questions/22676/how-do-i-download-a-file-over-http-using-蟒蛇) –