Divyansh Rastogi

Results 3 issues of Divyansh Rastogi

Hi! With the following code: ```python from adlfs import AzureBlobFileSystem fs = AzureBlobFileSystem(account_name=..., tenant_id=..., client_id=..., client_secret=...) fs.ls("") ``` I am running into the following error: ``` Unclosed client session client_session:...

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("")) ```...