webdav4 icon indicating copy to clipboard operation
webdav4 copied to clipboard

WebDAV client library with a fsspec based filesystem and a CLI.

Results 32 webdav4 issues
Sort by recently updated
recently updated
newest added

I am evaluating `webdav4` as an implementation of `fsspec` for accessing data stored in webDAV servers, in particular [dCache](https://www.dcache.org) and [XRootD](https://xrootd.slac.stanford.edu). Depending on how some of those servers are configured,...

code: import webdav4 from webdav4.client import Client from webdav4.fsspec import WebdavFileSystem import httpx timeout=httpx.Timeout(50*60*60) client = Client("https://sddsaturn.ondemand.sas.com", auth=("USER", "PWD"),timeout=timeout) try: with io.BytesIO() as stream: client.download_fileobj(source_folder_path, stream) stream.seek(0) except Exception as...