Office365-REST-Python-Client
Office365-REST-Python-Client copied to clipboard
Microsoft 365 & Microsoft Graph Library for Python
I find an issue when I try to use the method **get_file_by_server_relative_path** of this lib (Office365-REST-Python-Client]). The connection to the sharepoint goes well, but when i try to get a...
I have access to sharepoint file but not the root folder and I want to download the file using python.Here is my code ```import os from office365.sharepoint.files.file import File` from...
`ctx = ClientContext("https://...sharepoint.com").with_interactive(tenant=st.secrets['tenant_id'], client_id=st.secrets['client_id'],scopes=["User.Read", "Sites.Read.All", "Sites.ReadWrite.All" ,"Files.ReadWrite.All"]) web = ctx.web ctx.load(web) ctx.execute_query() st.session_state.sharepointPageInfo = "Web2 title: {0}".format(web.properties['Title']) ` I want access to sharepoint via msal and/or office365 REST But it...
Hello, Thanks to the maintainers for this awesome package. I was wondering if there are any plans for integrating Kerberos as an authentication provider for Office365? I had a requirement...
We're using `get_file_by_server_relative_url(url).download` to download a Sharepoint doc, but sometimes the file downloaded is broken without any errors raised. Should the library do a checksum to make sure the file...
i need to get a list of files and folder that the user's has access to in a certain path in a sharepoint site using sharepoint rest api.
While testing https://github.com/vgrem/Office365-REST-Python-Client/blob/master/examples/sharepoint/lists/read_large.py I get the above error. Is there any mechanism currently to bypass this? Complete error message: office365.runtime.client_request_exception.ClientRequestException: ('-2147024749, Microsoft.SharePoint.SPQueryThrottledException', 'The query cannot be completed because the number...
Hi, I am trying to use the SharePoint certificate flow and I could successfully generate certificate and use it. I just wanted to know if only Site.Full.Control.All permission works with...
I am trying to access files on my organisation's SharePoint through Python. I have installed ```office365-rest-python-client``` (v.2.5.5) and I am using Python 3.11.5 and Ubuntu 22.04.1 LTS. I have tried...