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

Getting the error talked about here (https://github.com/vgrem/Office365-REST-Python-Client/issues/547). Discussion on this seems to be dead. ```python import os from office365.sharepoint.client_context import ClientContext from office365.onedrive.driveitems.driveItem import DriveItem class SharepointClient(): def __init__(self, client_id="",...

question

I followed the instructions here to set up a client id and secret. https://github.com/vgrem/Office365-REST-Python-Client/wiki/How-to-connect-to-SharePoint-Online-and-and-SharePoint-2013-2016-2019-on-premises--with-app-principal ```python from office365.runtime.auth.client_credential import ClientCredential from office365.runtime.auth.user_credential import UserCredential from office365.sharepoint.client_context import ClientContext client_id = ""...

question

Can I use the 'Office365-REST-Python-Client' for an OnPremise SharePoint. I need to do operations like listing the document libraries, downloading files, tagging files etc. I am able to successfully use...

Hi , Today I tried this library . When I run the python script from command line it works but when I run it as service it gives an error...

question

I need to create a comprehensive report for each file within a SharePoint site detailing the access permissions granted to individuals.

question

Hello, I'm trying to run a search query to get ViewsLifeTime & ViewsLifeTimeUniqueUsers for pages in our SharePoint tenant, however the table being returned for each query is empty. ```...

Hello! I'm trying to write a script to pull all of the list items from a SharePoint list and I cannot for the life of me get it to authenticate...

question

```python # office365/outlook/mail/messages/message.py class Message(OutlookItem): # ... @property def body(self): """The body of the message. It can be in HTML or text format.""" return self.properties.setdefault("body", ItemBody()) @body.setter def body(self, value):...

enhancement

https://github.com/vgrem/Office365-REST-Python-Client/blob/master/examples/sharepoint/lists/read_items_with_filter.py Here, with the day, month, year, the results are accurate. However, when hour and minutes are specified, it does not give accurate results. from_datetime = datetime.datetime(2022, 1, 20, 0,...

question

shows "404 Client Error: Not Found for url" But my url is valid, I establish the connection like this Did anybody help? ![image](https://github.com/vgrem/Office365-REST-Python-Client/assets/164160408/59be5062-fef0-4bf4-8799-b21f4e641899)

question