gdrivefs icon indicating copy to clipboard operation
gdrivefs copied to clipboard

Google drive implementation of fsspec

Results 13 gdrivefs issues
Sort by recently updated
recently updated
newest added

I installed `pip install gdrivefs` my filesystem: `fs = fsspec.filesystem('gdrive')` Then get error `Module 'gdrivefs' has no attribute 'GoogleDriveFileSystem' my env: - python==3.11.8 - fsspec==2024.3.1 I check my gdrivefs in...

Currently, gdrivefs doesn't support shared drives. I have a setup like: ```python root_folder: str = "gdrive://Discovery Folder/Worksheets" storage_options: dict = { "token": "service_account", "access": "read_only", "creds": json.loads(os.environ["GOOGLE_APPLICATION_CREDENTIALS"]), "root_file_id": "0123456789ABCDEFGH", }...

This PR fixes a bad syntax that I sent in the previous PR and other two bugs. - The fs did not work for paths starting with `/`, and was...