shareplum
shareplum copied to clipboard
Pythonic SharePoint
There are numerous f strings in folder.py, errors.py, and list.py that causing issues when the package imports. Those need changed to "*".format(var1, var2) calls moving forward. I changed those and...
I have the following issues when trying to query the SharePoint list with a DateTime variable. I have Sharepoint 2016 and Python 3.8 1. It throws exception when trying to...
I'm picturing something like this to give a more informative error message in the case of bad auth. Thoughts?
This is related to https://github.com/jasonrollins/shareplum/issues/152. I went ahead and did the same in test_list and test_folder, though I'm not sure this is correct.
I'm trying to make it easier for anyone to run the test suite when making any changes. In particular, for people who have GitLab and Sharepoint, I'm setting up https://gitlab.com/dHannasch/shareplum/-/blob/gitlab-ci-yml/.gitlab-ci.yml...
Hi, I'm having problem with the code below. authcookie = Office365('https://contoso.sharepoint.com', username='[email protected]', password='secret').GetCookies() site = Site('https://contoso.sharepoint.com/sites/mysite', authcookie=authcookie) mylist = site.List('mylist') mydata = mylist.GetListItems(u'Sök') i get shareplum.errors.ShareplumRequestError: Shareplum HTTP Post Failed...
I installed the project using the pip and identified that the folder class timeout always has a value of 3. Even if I pass the parameter changing the value, this...
I'm trying to connect Sharepoint Online 2016 from Python to Insert/Update data into a list. My Code is: from shareplum import Site from shareplum import Office365 authcookie = Office365('https://xxxxxxx.sharepoint.com', username='[email protected]',...
I always get an error when I try to insert more than 500 records Traceback (most recent call last): File "D:\Python\lib\site-packages\shareplum\request_helper.py", line 17, in post response.raise_for_status() File "D:\Python\lib\site-packages\requests\models.py", line 935,...
First of all, thanks for putting the effort in to simplify Sharepoint interactions. You're my hero. If you've got a patreon or similar I'd be interested in helping out. I...