msgraph-sdk-python-core
msgraph-sdk-python-core copied to clipboard
Microsoft Graph client library for Python
Hi, We are experiencing failures in our Apache Airflow project canary builds related to imports in msgraph-core. This issue is likely due to the recent release of microsoft-kiota-http incompatible and...
Closes https://github.com/microsoftgraph/msgraph-sdk-python-core/issues/700 ```python batch_request_item1 = BatchRequestItem(request_information=request_info1) batch_request_item2 = BatchRequestItem(request_information=request_info2) batch_request_item3 = BatchRequestItem( request_information=request_info3, depends_on=[batch_request_item2] ) brcc = BatchRequestContentCollection() brcc.add_batch_request_item(batch_request_item1) brcc.add_batch_request_item(batch_request_item2) brcc.add_batch_request_item(batch_request_item3) async def get_batch_response(): batch_response = await batch_request_builder.post(batch_request_content=brcc) for response_content...
@shemogumbe To reproduce: ```python today = datetime.now().replace(hour=0,minute=0,second=0, microsecond=0) tomorrow = today + timedelta(days=1) new_event = Event( subject= "File end-of-day report", start=DateTimeTimeZone( date_time=(today + timedelta(hours=17)).isoformat(timespec='seconds'), time_zone='Pacific Standard Time' ), end=DateTimeTimeZone( date_time=(today...
## Overview Brief description of what this PR does, and why it is needed. ### Demo Optional. Screenshots, `curl` examples, etc. ### Notes Optional. Ancillary topics, caveats, alternative strategies that...
## Overview Brief description of what this PR does, and why it is needed. ### Demo Optional. Screenshots, `curl` examples, etc. ### Notes Optional. Ancillary topics, caveats, alternative strategies that...
```python async def upload_attachment_to_message(graph_client: GraphServiceClient, file_path: str) -> None: # # Create message draft_message = Message( subject="Large attachment" ) saved_draft = await graph_client.me.messages.post(draft_message) if saved_draft is None or saved_draft.id is...
depends on https://github.com/microsoft/kiota-abstractions-python/issues/349 Consider doing it at the same time as #704
depends on https://github.com/microsoft/kiota-abstractions-python/issues/348 Effectively the same, but for this library
In other SDKs, the iterator class typically has a `Resume` method to restart the iteration where it left off, and a corresponding `State` property to check if the iterator has...
I'm terribly sorry but there seems to be no way to report MS Graph API related errors anywhere. MS Graph APIs are failing randomly for outlook users for over a...