PyDrive2
PyDrive2 copied to clipboard
Google Drive API Python wrapper library. Maintained fork of PyDrive.
Bumps [black](https://github.com/psf/black) from 23.12.1 to 24.4.2. Release notes Sourced from black's releases. 24.4.2 This is a bugfix release to fix two regressions in the new f-string parser introduced in 24.4.1....
Hi! :wave: When upgrading the package for this project on Arch Linux I noticed that the dependency on httplib2 is not declared. It is used here: https://github.com/iterative/PyDrive2/blob/10a60fc91056a0f11e3dfc7ff55ec8dad6ddf7c6/pydrive2/auth.py#L4 The httplib2 dependency...
Hi! :wave: I'm currently upgrading the package for this project on Arch Linux and noticed that the dependency on PyOpenSSL appears to not be used: https://github.com/search?q=repo%3Aiterative%2FPyDrive2%20OpenSSL&type=code Is it in the...
I don't understand this error I'm getting on a local google colab docker runtime. I've checked the code and LocalWebserverAuth takes 4 parameters?? ```python TypeError Traceback (most recent call last)...
Google Drive added a new "resourceKey" attribute required to access documents shared by links. This resourceKey must be passed through HTTP header, aside with the document ID. resourceKey can be...
Example: ```python # Setup from pydrive2.fs import GDriveFileSystem from pydrive2.auth import GoogleAuth settings = { "client_config_backend": "service", 'service_config': { 'client_json_dict': { "type": "service_account", "private_key_id": str(os.getenv('xxx')), "private_key": str(os.getenv('xxx')).replace('\\n', '\n'), "client_email": str(os.getenv('xxx')),...
Bumps [black](https://github.com/psf/black) from 24.4.2 to 24.8.0. Release notes Sourced from black's releases. 24.8.0 Stable style Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)...
The following stackoverflow question brought to my attention that, although this repo has an fsspec-compatible class, it is not registered with fsspec, so calls like fsspec.open("gdrive://...") don't work. Even importing...
Hi! So I need to use service account authentication since I'm in a headless setup with no GUI access in the machine. So I have created a service account, shared...
Updates the requirements on [pyopenssl](https://github.com/pyca/pyopenssl) to permit the latest version. Changelog Sourced from pyopenssl's changelog. 25.1.0 (2025-05-17) Backward-incompatible changes: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Deprecations: ^^^^^^^^^^^^^ Attempting using any methods that mutate an OpenSSL.SSL.Context...