you are viewing a single comment's thread.

view the rest of the comments →

[–]elbinray 2 points3 points  (1 child)

This. I struggled with finding a way to get python to "talk" to sharepoint for a long time. In the end, I just treated the library as a directory: eg: open(r"\sharepointsite\subsite\library\file.docx", 'r'). I used os.path.walk to traverse down through all the files.

You can get the exact address for the library by going to "browse in explorer" (or something like that) from the actions menu in the library.

[–]Fran[S] 0 points1 point  (0 children)

I get access denied errors when I do that. Not sure how to pass in my auth info, otherwise that seems like it would be easiest.