I want to use Sharepoint with python (C-Python)
Has anyone tried this before ?
I want to use Sharepoint with python (C-Python) Has anyone tried this before ? |
||||
|
I suspect that since this question was answered the SUDS library has been updated to take care of the required authentication itself. After jumping through various hoops, I found this to do the trick:
|
||||
|
SOAP with Python is pretty easy. Here's a tutorial from Dive Into Python. |
||||
|
To get the wsdl :
main (mean) problem: the sharepoint-server uses a NTLM-Auth [ :-( ] so i had to use the NTLM-Auth-Proxy To Rob and Enzondio : THANKS for your hints ! |
||||
|
SharePoint exposes several web services which you can use to query and update data. I'm not sure what web service toolkits there are for Python but they should be able to build proxies for these services without any issues. This article should give you enough information to get started. |
|||
|