Releases: iterative/PyDrive2
Releases · iterative/PyDrive2
1.6.1
1.6.0
- Added a custom chunksize to the GetContentFile method. (#50) @TA40
- add len(MediaIoReadable) (#40) @casperdcl
1.4.14
- add files.GetContentIOBuffer (#39) @casperdcl
- misc fixes (#35) @casperdcl
1.4.13
- fix download thread safety 0b7bf78 @shcheklein
- test authentication (#33) @casperdcl
This release changes the way we throw exceptions in the GetContentFile. It doesn't throw FileNotUploadedError
and FileNotDownloadableError
errors anymore. Instead ApiRequestError
is always raised and GetField("reason")
:
if (
exc.error["code"] != 403
or exc.GetField("reason") != "fileNotDownloadable"
)
1.4.12
- files: fix auth for GetContentFile (#32) @casperdcl
1.4.11
- file.GetContentFile: stream to disk, add callback (#30) @casperdcl
1.4.10
- don't set http.redirect_codes if the attr doesn't exist (#27) @mribeirodantas
1.4.9
- Fixes 308 HTTP code handling in resumable uploads (#24) by @shcheklein