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

O365 seems to work fine on Python 3.12 but one dependency - stringcase - is throwing warnings (`stringcase.py:247: SyntaxWarning: invalid escape sequence '\W')`. Could O365 be officially updated to support...

Hi, in a Sharepoint list, if we have a field that is not initially set, it is not possible to update it to a new value. **Context :** i =...

Hey guys, I have created an **agent using 365 toolkits** to interact with my calender. the authentification and extracting events works fine. **example**: ![Capture d’écran 2024-06-07 à 14 36 08](https://github.com/O365/python-o365/assets/42543749/8866d90b-626b-492f-9eb4-704ec2c0af39)...

needs triage

when an email reply is created using message.reply() if there is a CC recipient in the initial message, then even if reply.cc.clear() is called (or reply.cc.remove(the-email-address) when reply.send() is executed...

**Problem:** ``` task=bucket.create_task("testtask") taskdetails=task.get_details() taskdetails.update(description="testdescription") task.delete() ``` results in: ``` Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python3.12/site-packages/O365/planner.py", line 378, in delete response = self.con.delete(url, headers={'If-Match':...

So this my function to fetch new mail after a set data, After 2024-06-05 01:41:32-04:00 the fetches the same mail with the same exact timesstamp even though there is newer...

Hi, I am using `drive.get_item_by_path()` to check which files a folder contains, if any. If a folder doesn't exist I consider it to be empty. ``` try: remote_folder = default_drive.get_item_by_path(...

Hi, I am just getting started with this library, but I already ran into a problem. My code: ``` credentials_tuple=("myappid", "123454...") account = Account(credentials_tuple) if not account.is_authenticated: account.authenticate() ``` Error:...

I regularly extract the text of an html message. The current parsing method (below) fails to insert linebreaks where one would expect them. Is it possible to improve this? I...

Taking a peek at the API documentations it appears these are able to be obtained. API Docs: https://learn.microsoft.com/en-us/graph/api/resources/todo-overview?view=graph-rest-beta&preserve-view=true#checklist-item I figured I would open a feature request instead of going down...

Feature Request