PyDrive2
PyDrive2 copied to clipboard
Google Drive API Python wrapper library. Maintained fork of PyDrive.
"Security update for Google Drive": https://support.google.com/drive/answer/10729743 1st paragraph says "_the security update will make Google Drive files more secure by updating their links to **include a resource key**_" So I...
Not sure if there could be two different branches of this question (I guess both they might work in a different way): - Google Docs, Google Presentations or Google Sheets...
V3 has nice features like an ability to fetch only the fields in JSON that you need. Related not tested attempts to migrate: https://github.com/joapuiib/PyDrive/commit/ab843891709dac941dc69579eb132e4897206fdc
When I rename the title of a file, I have to do following: googlefile = drive.CreateFile({"id": file_id}) googlefile.FetchMetadata(fields="title") googlefile["title"] = new_title googlefile.Upload() Not like the example, I need to add:...
I have a raspberry pi 4 with raspbian installed. I have installed PyDrive2 but when execute my code (in my pc working well) i have that error (Problem module 'six.moves'...
Hey, How is it going with this project? I am planning to use this for my own project and was trying some things. However I could not find how to...
- [ ] if `filename` is passed make sure that we always close it (`open` happens on our end). Related - https://github.com/gsuitedevs/PyDrive/pull/144. - [ ] create an alternative `SetContent` to...
There should be a `close` method exposed (for example for `MediaIoReadable`) to close the underlying connection. The underlying `httplib2` library (https://github.com/httplib2/httplib2/blob/master/python3/httplib2/__init__.py) seems to auto-`close()` on `Exception` or on `HEAD` requests...
See iterative/dvc project - it has an example.
The tests are not designed to run concurrently. - one job from a PR build can failed at the same time as a job from a branch build because they...