msgraph-sdk-python-core icon indicating copy to clipboard operation
msgraph-sdk-python-core copied to clipboard

Microsoft Graph client library for Python

Results 79 msgraph-sdk-python-core issues
Sort by recently updated
recently updated
newest added

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...

bug
status:waiting-for-author-feedback

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...

bug
WIP

## 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...

conflicting

## 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...

type:bug

depends on https://github.com/microsoft/kiota-abstractions-python/issues/349 Consider doing it at the same time as #704

enhancement
type:enhancement
type:security
type:breaking-change

depends on https://github.com/microsoft/kiota-abstractions-python/issues/348 Effectively the same, but for this library

enhancement
type:enhancement

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...

bug
priority:p2

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...

status:waiting-for-triage