I'd like to use the Python bindings to the delta-rs to read from my blob storage. https://github.com/delta-io/delta-rs/tree/main/python
Currently I am kind of lost, since I cannot figure out how to configure the filesystem on my local machine. Where do i have to put my credentials?
Can I use adlfs for this?
from adlfs import AzureBlobFileSystem
fs = AzureBlobFileSystem(
account_name="...",
account_key='...'
)
and then use the fs object?
Would be really helpful if someone could provide me with some headstart here.
Best