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 293 Office365-REST-Python-Client issues
Sort by recently updated
recently updated
newest added

Hi, I am trying to access sharepoint sites using msal. ``` site_url = "https://organization.sharepoint.com/sites/mysite" tenant_id = "xxxx-xxxx-xxxx" client_id = "xxxx-xxxx-xxxx" client_secret = "xxxx-xxxx-xxxx" authority_url = f"https://login.microsoftonline.com/{tenant_id}" app = msal.ConfidentialClientApplication( client_id,...

question

Since version 2.3.15 I get this error when trying to upload a file to sharepoint: FileCollection.add() missing 1 required positional argument: 'content' It works with version 2.3.14. No change in...

bug

Hi I was using the library to download some files from sharepoint using file.read() ` for _, row in tqdm.tqdm(df.iterrows()): file_url = row['Relative URL'] local_path = os.path.join(local_folder, row['Relative URL'].lstrip('/')) #...

question

Hi, I am not super knowledgable about Teams. We use the Loops feature as a sort of Wiki. I want to be able to iterate over the content and access...

I recognize that existing issues and examples such as [#392](https://github.com/vgrem/Office365-REST-Python-Client/issues/392) and Office-365 REST Client example [read_all.py](https://github.com/vgrem/Office365-REST-Python-Client/blob/master/examples/sharepoint/lists/read_all.py) tackles how to incrementally query more than 5000 items from a SharePoint list, but...

Hi, I have the following issue when attempting to download files from a remote onedrive folder. The folder has about ~1800 items, with each item about the size of 5...

Hello guys, I'm trying to connect to Sharepoint online. But its throwing some error that I can't seem to get around it. I've search but can't seem to find any...

This pull request allows to update a message in outlook based on this documentation: https://learn.microsoft.com/en-us/graph/api/message-update?view=graph-rest-1.0&tabs=http

Hello! Looked at the example ´examples/sharepoint/files/upload_large.py´ and others in these repo, which are using the ´create_upload_session´ with ´print_upload_progress´ func as an argument, all examples are returning: TypeError: print_upload_progress() missing 1...

bug
enhancement

My program for uploading files to SharePoint was working normally until last week. Now, I see an error occurring during the upload process. I tested it using this code, and...

question