You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am wondering whether it is possible to use the library to download multiple files in parallel/concurrently (i.e. by exploiting asyncio Python SDK for Azure Blob Storage) so that given a list of files, e.g. ["file1.parquet", "file2.parquet", "file3.parquet"] I can start the download of all files in parallel with couritines and await them so that at the end I can do something the files, e.g. for instance concatenating them together.
I am wondering whether it is possible to use the library to download multiple files in parallel/concurrently (i.e. by exploiting asyncio Python SDK for Azure Blob Storage) so that given a list of files, e.g. ["file1.parquet", "file2.parquet", "file3.parquet"] I can start the download of all files in parallel with couritines and await them so that at the end I can do something the files, e.g. for instance concatenating them together.
What I tried so far is a single file:
The text was updated successfully, but these errors were encountered: