I am working on integrating python and sharepoint. I am facing major problems with the GetItems and CopyIntoItems web service calls present in the Copy web service.
The library i am using to consume the service is Python-suds .
I want to know if 1. Are these are the right methods to be used for downloading/uploading files from/to sharepoint ?
If yes - the way i am using them is like this - i) client.service.GetItems('Shared Documents/filename.doc') * I get a dictionray like structure that is something like this (reply){ GetItemResult = 0 } Obviously it is not returning any byte array stream - I am not sure what i am missing ii) I am not able to understand how to represent FieldInformationCollection and FieldInformation in Python and I am confused about how the method works in general with the different data types.
If the answer is no - Wow i have to start from scratch what is the best way of doing it with python - suds ( a working example shud be gr8 ! )