python-o365 icon indicating copy to clipboard operation
python-o365 copied to clipboard

A simple python library to interact with Microsoft Graph and Office 365 API

Results 213 python-o365 issues
Sort by recently updated
recently updated
newest added

Hello, I don't find message rules endpoint implementation. https://docs.microsoft.com/en-us/graph/api/mailfolder-list-messagerules?view=graph-rest-1.0&tabs=http This features inplementation could be cool for security issue. It's planned ? Best regard

Feature Request

I have come across a problem when using a shared maibox calendar. it was working fine, then the user added a 'private event' The private event only emails very limited...

bug

Hi, I think that I am missing something in the code, but I keep getting this error: `requests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://graph.microsoft.com/v1.0/sendMail | Error Message: Resource...

I noticed that if there is a file in the root folder, lets say "test.txt" and another in a subfolder also named "test.txt". If you search for "test.txt" in the...

I'm looking at why All Day Events are displayed incorrectly in Home Assistant. They currently show as offset by the difference from UTC. I think this is because All Day...

excel.py in these function, it should be GET method, not POST ` def get_row(self, index): """ Gets a row contained in the range. :param int index: Row number of the...

bug

Filtering email with subject and date and reading attachment authentication code mailbox = account.mailbox() inbox = mailbox.inbox_folder() How to further filter the inbox email with subject and date

O365 2.015 (updated today) It simply doesn't work ``` account = Account(credentials) schedule = account.schedule() print(schedule) calendar = schedule.get_default_calendar() bin_collection = calendar.new_event() # creates a new unsaved event bin_collection.subject =...

code: `storage = account.storage() my_drives = storage.get_drives() print(my_drives) my_folders = list(my_drives[0].get_items()) print(my_folders) items = list(my_folders[0].get_items()) print(items)` output: `[Drive: Documents] [Folder: Documents] []` why am I not getting any folder or...

Thank you for this great lib, it's definitely got everything that I've been looking. I'm having some trouble with adding an attachment to an email. It's probably not an issue,...