sme31

Results 5 comments of sme31

docLibrary = ctx.web.lists.get_by_title("YourLibrary") lineItems = docLibrary.get_items() ctx.load(lineItems) ctx.execute_query() for lineItem in lineItems: print(lineItem.properties['Modified']) print(lineItem.properties['Created']) print(lineItem.properties['AuthorId']) print(lineItem.properties['EditorId']) You'd then need to lookup the AuthorId / EditorId to find the name I...

Are you uploading a file with a very long filename by any chance? I'm hitting a similar issue, but it's only for long filenames.

Ah, ok. Must be a different issue then. Thx.

Thanks for the reply, Jason. I should have mentioned that I am using Sharepoint online, where I *think* the limit is pretty much fixed. It's interesting to see though that...

I resolved my issue by not using Shareplum, and using https://github.com/vgrem/Office365-REST-Python-Client