Office365-REST-Python-Client icon indicating copy to clipboard operation
Office365-REST-Python-Client copied to clipboard

Microsoft 365 & Microsoft Graph Library for Python

Results 276 Office365-REST-Python-Client issues
Sort by recently updated
recently updated
newest added

I'm trying to connect to my organization's SharePoint (end purpose is to be able to read a list within a folder) I tried the following: ``` from office365.sharepoint.client_context import ClientContext...

bug

Hello @vgrem, I was able to download a file from my personal SharePoint following the ReadMe (create credential client_id and client_secret), but now I need to download a file **shared**...

Using below logic for uploading large files. target_url = "Shared Documents/testing" target_folder = ctx.web.ensure_folder_path(target_url) size_chunk = 1000000 local_path = "../../../tests/data/big_buck_bunny.mp4" file_size = os.path.getsize(local_path) def print_upload_progress(offset): print("Uploaded '{0}' bytes from '{1}'...[{2}%]".format(offset,...

bug

I got this error when trying to access sharepoint. Is this something that can be fixed on my end? Appreciate any support. Thanks. `An error occurred while retrieving token from...

question

I've been working on pulling SharePoint data and ran into an issue with Azure National Cloud. I am currently limited to username and password to connect. Currently when the STSProfile...

enhancement

Hello, I am trying to upload a file to sharepoint but I am getting some json error which I figure out. Someone please help me in solving this. code: ```...

question

Hello So I'm having trouble getting/validating data from my SharePoint list. I know my view object doesn't contain any items, wherefore I have used xml to apply my view before...

I am trying to run the following piece of code, which has always worked until recently: `client.web.ensure_folder_path(path).execute_query()` I am authenticating as follows: `client = ClientContext(url).with_credentials(UserCredential(username, password))` This is the error...

bug

When I try to get the SharePoint list items, it sometimes fails with error message: **'int' object is not subscriptable** This error doesn't happen very often, about 1-2 times every...

question

Dear Community, I want to synchronize a specific folder of the sharepoint server to my local filesystem with this Office365-REST-Python-Client. At the moment the struggle is very big, because worked...

question