Skip to main content

Kerberised WebDAV client library

Project description

=== Introduction ===

WebDAV-Kerberos is a Kerberised subclass of the davlib.DAV class found in the
Python_WebDAV_Library package. This module depends on Python_WebDAV_Library
and PyKerberos. Python 3 is not (yet) supported. Installing and configuring
Kerberos properly is left as an exercise for the reader.


=== Dependencies ===

Python_WebDAV_Library (tested with version 0.4.2)

PyKerberos (tested with revision 11110)
https://svn.calendarserver.org/repository/calendarserver/PyKerberos/trunk/


=== Usage ===

The interface is exactly the same as davlib.DAV:
http://bazaar.launchpad.net/~datafinder-team/python-webdav-lib/trunk/view/head:/lib/davlib.py

Krb5DAV includes an extra constructor argument and an extra function. Specify
the "principal" constructor argument to set the client user principal name
you wish to connect as. Omitting this argument will cause the Kerberos client
to use the principal of the current user.

The Krb5DAV.whoami() function will return the authenticated user principal
name. If called before authentication the function will return the value
of the "principal" constructor argument, which may be the empty string if
you omitted the argument.


=== Examples ===

from krb5dav import Krb5DAV

# Connect to SharePoint with the credentials of the current user. You must
# have a fresh ticket in your Kerberos credentials cache for this to work.
dav = Krb5DAV('sharepoint.example.com', protocol='http')

response = dav.get('/MySite/Home/Shared%20Documents/foo.docx')
with open('/tmp/foo.docx', 'wb') as outfile:
outfile.write(response.read())
dav.close()

# Connect to SharePoint with specific credentials. You must have a Kerberos
# keytab file with the principal's key, and the current user must have read
# access to it.
dav = Krb5DAV('sharepoint.example.com', protocol='http', principal='jdoe@EXAMPLE.COM')

with open('/tmp/foo.docx', 'rb') as infile:
buf = infile.read()
dav.put('/MySite/Home/Shared%20Documents/foo2.docx', buf)
dav.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

WebDAV-Kerberos-0.2.0.tar.gz (15.1 kB view details)

Uploaded Source

File details

Details for the file WebDAV-Kerberos-0.2.0.tar.gz.

File metadata

File hashes

Hashes for WebDAV-Kerberos-0.2.0.tar.gz
Algorithm Hash digest
SHA256 fed9f11ba3df2c1bcaac1b5a82d069434ca0749d712f3b276d3214fa0e9d1820
MD5 a24474d036c1b00d542c648a6c6cd9c2
BLAKE2b-256 6b5825543a9a34fc284564e33cba9e5f9a0fb8cf39546635c90814212b21d02c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page