python-o365
python-o365 copied to clipboard
A simple python library to interact with Microsoft Graph and Office 365 API
I want to modify a copied DriveItem like so: ```` copy = calculators.copy(folder) for status, perc_complete in copy.check_status(): print(status, perc_complete) item = copy.get_item() ```` However, the check_status() method seems to...
Hi, thanks for the excellent lib! Is it possible to authenticate using FedAuth or rtFA cookies exported from a browser for development/prototyping use cases?
Hi, This library looks great, and the way it is plugged into langchain is super cool. Question: our users are already authenticated interactively through the front end of our app,...
**Issue**: When utilizing the O365 library in Python, I have encountered an issue where the connection is not re-established or refreshed when the access token has expired, even though a...
I am saving TaskDetails with a description and references. Getting `/O365/planner.py", line 103, in update if isinstance(data['checklist'][key], dict) and not '@odata.type' in data['references'][key]: ~~~~^^^^^^^^^^^^^ KeyError: 'checklist'`
We are curious whether it is possible to define that an email should be sent using MS365's Encrypt system using the equivalent of an API flag/call for telling the system...
Greetings to the person responsible for reading this message. I'm creating a code for process automation with exel, I really didn't want to send an issue for something like this...
I am trying to build a query to exclude mail matching multiple subjects and am not clear on the behaviour here. If I add a query like this: ``` query...
Hi, I'm using trying the schedule a meeting with the library: --- new_event.subject = subject new_event.location = location new_event.body = invitation_text new_event.start = start_time new_event.remind_before_minutes = 30 new_event.end = end_time...
I am trying to assign some custom id to message at the sending time (as message/send doesn't return anything as we know) So, I am sending singleValueExtendedProperty `{'id': property_id, 'value':...