Hello,
According to the docs, here is how to access a file in swift:
import fsspec
with fsspec.open("swift://server/account/container/object.txt", "r") as f:
print(f.read())
Apologies for asking the obvious but, is account on the string above referring to a personal user account for the swift endpoint?
Do you still need account if you configure environment variables OS_STORAGE_URL and OS_AUTH_TOKEN for authentication?
Many thanks,
Sebastian
Hello,
According to the docs, here is how to access a file in swift:
Apologies for asking the obvious but, is
accounton the string above referring to a personal user account for the swift endpoint?Do you still need
accountif you configure environment variablesOS_STORAGE_URLandOS_AUTH_TOKENfor authentication?Many thanks,
Sebastian