Office365-REST-Python-Client
Office365-REST-Python-Client copied to clipboard
Microsoft 365 & Microsoft Graph Library for Python
Run results: https://github.com/bhavberi/Office365-REST-Python-Client-fork/actions/runs/14857891546/job/41715495398 There are a lot of errors, which should be fixed.
# Intro: Hello. First of all, thank you for the effort that you put into this library. Is is very usefull for me and many other users. # Current situation:...
Hi there! 👋 First of all, thank you for this great library — it's been very helpful! While migrating roles from one SharePoint site to another, I encountered some unexpected...
Hello, i did find such code here in one of the issues: from office365.sharepoint.client_context import ClientContext from office365.sharepoint.listitems.listitem import ListItem from office365.runtime.auth.client_credential import ClientCredential list_title = "" page_size = 5000...
After upgrading via pip from `2.6.1` to `2.6.2` we receive the error from the title (details below) on the start of ```python ctx = ClientContext(url).with_access_token(spTokenService.getAccessTokenResponse) [...] ctx.execute_batch() ``` ```shell self.ctx.execute_batch()...
Hi everyone, I am encountering an issue when using the file download function in the following examples: https://github.com/vgrem/Office365-REST-Python-Client/blob/master/examples/sharepoint/files/download.py https://github.com/vgrem/Office365-REST-Python-Client/blob/master/examples/sharepoint/files/download_from_url.py These functions work perfectly with file paths in the format: "{site_url}/sites/team/Shared...
Currently there appears to be no way to add the token query parameter to a sharepoint driveitem delta request. ```python site.drive.root.delta ``` my current workaround is to provide a custom...
I'm using authentication method 1 to upload data to a SharePoint List with client id and client secret. This works fine, but when I package the code as .exe with...
Hi we are trying to upload file to sharepoint using basic auth and below sample, # Upload file to Sharepoint target_folder = ctx.web.get_folder_by_server_relative_url(sharepoint_relative_url) target_file = target_folder.upload_file(sharepoint_variable, file) ctx.execute_query() In the...
get_files.py example does not work with too much files inside the folder. I am guessing this is related to this issue: https://github.com/vgrem/Office365-REST-Python-Client/issues/392 The only workaround i found so far is...