vote up 5 vote down star

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.

flag

3 Answers

vote up 0 vote down

Apparently you're looking for a WebDAV client library.

Not sure how the gazillion hits came up, it seems the following 2 looks relevant:

link|flag
vote up 0 vote down

I have no experience with any of these libraries, but the Python Package Index ("PyPi") lists quite a few webdav modules.

link|flag
vote up 2 vote down

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.

link|flag
Yeah, that's certainly another option. If I'm going to be mounting it, I might as well use NFS, but mounting is what I was trying to avoid by using WebDAV in the first place. – Kamil Kisiel Oct 9 at 16:45
+1 for the mount solution. This is the Unix way of solving such problems. @Kamil What were your arguments against mounting so you decided to find a WebDAV library? – Andrey Vlasovskikh Oct 21 at 11:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.