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

Is there any support for authentication using service account credentials in `gdrivefs`?

Hi! I tried the following code snippet: ```python import gdrivefs from urllib.parse import urlparse repo_url = 'https://drive.google.com/drive/folders/some-folder-id?usp=sharing' parsed = urlparse(repo_url) folder_id = parsed.path.split('/')[-1] gdfs = gdrivefs.GoogleDriveFileSystem(token='browser', root_file_id=folder_id, access='read_only') print(gdfs.ls("")) ```...

I installed gdrivefs using pip. When I run your example script (in example_w_xarray_zarr.ipynb): ``` import gdrivefs # use this the first time you run token = 'browser' # use this...

Hi, two questions: Can I assume this is under BSD? Also, Could we get sharred drive support added? If you give me pointers I can do it and push a...

Hi, I am discovering this project and would like to know about its status? It is presented as a fsspec implementation. Is it connected to fsspec and can files be...

While integrating gdrivefs to a test suite, I noticed that it doesn't handle rate limit exceeding errors in the exponential waiting fashion (https://developers.google.com/drive/api/v3/handle-errors#exponential-backoff). Would it make sense if I contribute...

Apparently, the name of the package on PyPI is already in use, so maybe it can be published under something else like `gdrive-spec`?

I am writing a Zarr file to Google Drive using gdrivefs and Xarray, and the writes are extremely slow. The file is local to my notebook and is about 1.5...

See https://developers.google.com/drive/api/v3/manage-sharing#python

good first issue

I tried some basic stuff with a dask_kubernetes on ocean.pangeo.io. No luck. I created a cluster and connected to it, created a gdrivefs, and the tried to read / write...