I'd like to implement a piece of functionality in my application that uploads and manipulates files on a WebDAV server. I'm looking for a mature Python library that would give an interface similar to the os.* modules for working with the remote files. Googling has turned up a smattering of options for WebDAV in Python, but I'd like to know which are in wider use these days.
|
|
|
||
|
|
|
|
Apparently you're looking for a WebDAV client library. Not sure how the gazillion hits came up, it seems the following 2 looks relevant:
|
||
|
|
|
|
I have no experience with any of these libraries, but the Python Package Index ("PyPi") lists quite a few webdav modules. |
||
|
|
|
|
I don't know of any specifically but, depending on your platform, it may be simpler to mount and access the WebDAV-served files through the file system. There's davfs2 out there and some OS's, like Mac OS X, have WebDAV file system support built in. |
||||
|
