1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
PyWebDAV is a standards compliant WebDAV server and library written in Python
DESCRIPTION
-----------
Python WebDAV implementation (level 1 and 2) that features a library that enables you
to integrate WebDAV server capabilities to your application
A fully working example on how to use the library is included. You can find the server in the DAVServer package. Upon installation a script called davserver is created in your $PYTHON/bin directory.
If you search an easy to use WebDAV server that supports most clients (cadaver, Mac OS X Finder, Windows Explorer, ...) then try out PyWebDAV.
INSTALLATION
------------
Installation and setup of server can be as easy as follows:
$ easy_install PyWebDAV
$ davserver -D /tmp -n -J
If you're living on the bleeding edge then check out the sourcecode from
http://code.google.com/p/pywebdav/source/checkout
After having downloaded code simply install a development egg:
$ svn co svn checkout http://pywebdav.googlecode.com/svn/trunk/ pywebdav
$ cd pywebdav
$ python setup.py develop
$ davserver --help
Send patches to http://code.google.com/p/pywebdav/issues/list
If you want to use the library then have a look at the DAVServer package that
holds all code for a full blown server. Also doc/ARCHITECURE has information for you.
QUESTIONS?
---------
Ask here http://groups.google.com/group/pywebdav
or send an email to the maintainer.
REQUIREMENTS
------------
- Python 2.4 or higher (www.python.org)
- PyXML 0.66 (pyxml.sourceforge.net)
LICENSE
-------
General Public License v2
see doc/LICENSE
AUTHOR(s)
------
Simon Pamies [*]
Bielefeld, Germany
s.pamies@banality.de
Christian Scholz
Aachen, Germany
mrtopf@webdav.de
Vince Spicer
Ontario, Canada
vince@vince.ca
[*]: Current Maintainer
OPTIONAL
--------
- MySQLdb (http://sourceforge.net/projects/mysql-python)
- Mysql server 4.0+ for Mysql authentication with
with read/write access to one database
NOTES
-----
Look inside the file doc/TODO for things which needs to be done and will be done
in the near future.
Have a look at doc/ARCHITECTURE to understand what's going on under the hood
|