René's URL Explorer Experiment


Title: Multiple asyncio runs cause SSLWantReadError · Issue #82 · microsoftgraph/msgraph-sdk-python · GitHub

Open Graph Title: Multiple asyncio runs cause SSLWantReadError · Issue #82 · microsoftgraph/msgraph-sdk-python

X Title: Multiple asyncio runs cause SSLWantReadError · Issue #82 · microsoftgraph/msgraph-sdk-python

Description: Hi, I would like to use the Microsoft graph SDK for Python with Django DB transaction. As Django DB transaction with transaction.atomic() must be in sync context, I must use multiple asyncio.run calls. The question is how can we mix asyn...

Open Graph Description: Hi, I would like to use the Microsoft graph SDK for Python with Django DB transaction. As Django DB transaction with transaction.atomic() must be in sync context, I must use multiple asyncio.run ca...

X Description: Hi, I would like to use the Microsoft graph SDK for Python with Django DB transaction. As Django DB transaction with transaction.atomic() must be in sync context, I must use multiple asyncio.run ca...

Opengraph URL: https://github.com/microsoftgraph/msgraph-sdk-python/issues/82

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Multiple asyncio runs cause SSLWantReadError","articleBody":"Hi,\r\n\r\nI would like to use the Microsoft graph SDK for Python with Django DB transaction.\r\nAs Django DB transaction `with transaction.atomic()` must be in sync context, I must use multiple `asyncio.run` calls.\r\n\r\n\u003e The question is how can we mix async graph requests and sync calls with multiple async calls?\r\n\r\nThe first `asyncio.run` works correctly, I am able to retrieve two `MailFolder` with their ID and messages in one of these folders.\r\n\r\n```python\r\nmailfolders = await asyncio.gather(\r\n    self._retrieve_mailfolder_source(),\r\n    self._retrieve_mailfolder_backup(),\r\n    return_exceptions=False\r\n)\r\n\r\n# Same async event loop, no SSLWantReadError raised\r\nresult = await asyncio.gather(self._get_messages(mailfolders[0]))\r\n```\r\n\r\nThe issue is for the second `asyncio.run`, the second call raise a `SSLWantReadError` exception.\r\n\r\nFor your information, when I run all graph requests in the same event loop, it works.\r\nI don't know why with a second/different event loop, the graph request causes `SSLWantReadError` error.\r\n\r\nIt should be possible to execute many async calls with `asyncio.run`, correct?\r\n\r\n```python\r\ndef _retrieve_mailfolders(self):\r\n    mailfolders = await asyncio.gather(\r\n        self._retrieve_mailfolder_source(),\r\n        self._retrieve_mailfolder_backup(),\r\n        return_exceptions=False\r\n    )\r\n    return mailfolders\r\n\r\ndef _retrieve(self):\r\n    mailfolders = asyncio.run(self._retrieve_mailfolders())\r\n    \r\n    with transaction.atomic():\r\n        # Second async run causes SSLWantReadError\r\n        messages = asyncio.run(self._get_messages(mailfolders[0]))\r\n```\r\n\r\n## Exception\r\n\r\n```\r\nScopes:\r\n('https://graph.microsoft.com/.default',)\r\n\r\nToken:\r\nAccessToken(token='eyJ0eXAiOiJKV1QiLCJub25jZSI6Imo*********************************', expires_on=1675276095)\r\n\r\nSuccessfully authenticated to Azure\r\n\r\n\r\n\r\nTraceback (most recent call last):\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/anyio/streams/tls.py\", line 130, in _call_sslobject_method\r\n    result = func(*args)\r\n  File \"/usr/lib/python3.10/ssl.py\", line 917, in read\r\n    v = self._sslobj.read(len)\r\nssl.SSLWantReadError: The operation did not complete (read) (_ssl.c:2548)\r\n\r\nDuring handling of the above exception, another exception occurred:\r\n\r\nTraceback (most recent call last):\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/http11.py\", line 91, in handle_async_request\r\n    ) = await self._receive_response_headers(**kwargs)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/http11.py\", line 155, in _receive_response_headers\r\n    event = await self._receive_event(timeout=timeout)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/http11.py\", line 191, in _receive_event\r\n    data = await self._network_stream.read(\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/backends/asyncio.py\", line 34, in read\r\n    return await self._stream.receive(max_bytes=max_bytes)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/anyio/streams/tls.py\", line 195, in receive\r\n    data = await self._call_sslobject_method(self._ssl_object.read, max_bytes)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/anyio/streams/tls.py\", line 137, in _call_sslobject_method\r\n    data = await self.transport_stream.receive()\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 1264, in receive\r\n    self._transport.resume_reading()\r\n  File \"/usr/lib/python3.10/asyncio/selector_events.py\", line 814, in resume_reading\r\n    self._add_reader(self._sock_fd, self._read_ready)\r\n  File \"/usr/lib/python3.10/asyncio/selector_events.py\", line 760, in _add_reader\r\n    self._loop._add_reader(fd, callback, *args)\r\n  File \"/usr/lib/python3.10/asyncio/selector_events.py\", line 253, in _add_reader\r\n    self._check_closed()\r\n  File \"/usr/lib/python3.10/asyncio/base_events.py\", line 515, in _check_closed\r\n    raise RuntimeError('Event loop is closed')\r\nRuntimeError: Event loop is closed\r\n\r\nDuring handling of the above exception, another exception occurred:\r\n\r\nTraceback (most recent call last):\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/app_discover/core/adapters/emailMsGraph/msGraphAdapter.py\", line 314, in _move_message\r\n    message = await self._msgraph_client.me.messages_by_id(message.id).move.post(\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/msgraph/generated/me/messages/item/move/move_request_builder.py\", line 58, in post\r\n    return await self.request_adapter.send_async(request_info, message.Message, error_mapping)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/httpx_request_adapter.py\", line 112, in send_async\r\n    response = await self.get_http_response_message(request_info)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/httpx_request_adapter.py\", line 320, in get_http_response_message\r\n    resp = await self._http_client.send(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpx/_client.py\", line 1620, in send\r\n    response = await self._send_handling_auth(\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpx/_client.py\", line 1648, in _send_handling_auth\r\n    response = await self._send_handling_redirects(\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpx/_client.py\", line 1685, in _send_handling_redirects\r\n    response = await self._send_single_request(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpx/_client.py\", line 1722, in _send_single_request\r\n    response = await transport.handle_async_request(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/msgraph_core/middleware/async_graph_transport.py\", line 21, in handle_async_request\r\n    response = await self.pipeline.send(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 31, in send\r\n    return await self._first_middleware.send(request, self._transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/redirect_handler.py\", line 65, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 57, in send\r\n    return await self.next.send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/retry_handler.py\", line 77, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 57, in send\r\n    return await self.next.send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/parameters_name_decoding_handler.py\", line 48, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 57, in send\r\n    return await self.next.send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/msgraph_core/middleware/telemetry.py\", line 48, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 54, in send\r\n    response = await transport.handle_async_request(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/msgraph_core/middleware/async_graph_transport.py\", line 21, in handle_async_request\r\n    response = await self.pipeline.send(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 31, in send\r\n    return await self._first_middleware.send(request, self._transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/redirect_handler.py\", line 65, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 57, in send\r\n    return await self.next.send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/retry_handler.py\", line 77, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 57, in send\r\n    return await self.next.send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/parameters_name_decoding_handler.py\", line 48, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 57, in send\r\n    return await self.next.send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/msgraph_core/middleware/telemetry.py\", line 48, in send\r\n    response = await super().send(request, transport)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/kiota_http/middleware/middleware.py\", line 54, in send\r\n    response = await transport.handle_async_request(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpx/_transports/default.py\", line 353, in handle_async_request\r\n    resp = await self._pool.handle_async_request(req)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/connection_pool.py\", line 253, in handle_async_request\r\n    raise exc\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/connection_pool.py\", line 237, in handle_async_request\r\n    response = await connection.handle_async_request(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/connection.py\", line 90, in handle_async_request\r\n    return await self._connection.handle_async_request(request)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/http11.py\", line 111, in handle_async_request\r\n    await self._response_closed()\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/http11.py\", line 224, in _response_closed\r\n    await self.aclose()\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/_async/http11.py\", line 232, in aclose\r\n    await self._network_stream.aclose()\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/httpcore/backends/asyncio.py\", line 54, in aclose\r\n    await self._stream.aclose()\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/anyio/streams/tls.py\", line 192, in aclose\r\n    await self.transport_stream.aclose()\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 1323, in aclose\r\n    self._transport.close()\r\n  File \"/usr/lib/python3.10/asyncio/selector_events.py\", line 706, in close\r\n    self._loop.call_soon(self._call_connection_lost, None)\r\n  File \"/usr/lib/python3.10/asyncio/base_events.py\", line 753, in call_soon\r\n    self._check_closed()\r\n  File \"/usr/lib/python3.10/asyncio/base_events.py\", line 515, in _check_closed\r\n    raise RuntimeError('Event loop is closed')\r\nRuntimeError: Event loop is closed\r\n\r\nDuring handling of the above exception, another exception occurred:\r\n\r\nTraceback (most recent call last):\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/manage.py\", line 22, in \u003cmodule\u003e\r\n    main()\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/manage.py\", line 18, in main\r\n    execute_from_command_line(sys.argv)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/django/core/management/__init__.py\", line 446, in execute_from_command_line\r\n    utility.execute()\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/django/core/management/__init__.py\", line 440, in execute\r\n    self.fetch_command(subcommand).run_from_argv(self.argv)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/django/core/management/base.py\", line 402, in run_from_argv\r\n    self.execute(*args, **cmd_options)\r\n  File \"/home/renji/virtualenvs/f5/maintenanceManager_3.10/lib/python3.10/site-packages/django/core/management/base.py\", line 448, in execute\r\n    output = self.handle(*args, **options)\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/app_discover/management/commands/discover.py\", line 109, in handle\r\n    raise e\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/app_discover/management/commands/discover.py\", line 103, in handle\r\n    messages = adapter.retrieve(store, range)\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/app_discover/core/adapters/emailMsGraph/msGraphAdapter.py\", line 358, in retrieve\r\n    raise e\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/app_discover/core/adapters/emailMsGraph/msGraphAdapter.py\", line 355, in retrieve\r\n    return self._retrieve(store, limit)\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/app_discover/core/adapters/emailMsGraph/msGraphAdapter.py\", line 452, in _retrieve\r\n    move, = asyncio.run(self._move_message(message, mailfolder_backup))\r\n  File \"/usr/lib/python3.10/asyncio/runners.py\", line 44, in run\r\n    return loop.run_until_complete(main)\r\n  File \"/usr/lib/python3.10/asyncio/base_events.py\", line 649, in run_until_complete\r\n    return future.result()\r\n  File \"/home/renji/scripts/f5/circuitMaintenanceParser/src/app_discover/core/adapters/emailMsGraph/msGraphAdapter.py\", line 321, in _move_message\r\n    raise DiscoverAdapterError(\r\napp_discover.errors.DiscoverAdapterError: Unable to move the message 'TCL TT: \"*******\" / \"Emergency\" / \"Scheduled\" / Planned Work Notification' to the mail folder 'Backup':\r\nEvent loop is closed\r\n```\r\n\r\n## Environment\r\n\r\nPython version 3.10.9 (Ubuntu 20.04)\r\n\r\n- azure-core :                                           1.26.2\r\n- azure-identity :                                      1.12.0\r\n- microsoft-kiota-abstractions :               0.3.0\r\n- microsoft-kiota-authentication-azure : 0.2.0\r\n- microsoft-kiota-http :                            0.3.1\r\n- microsoft-kiota-serialization-json :       0.2.1\r\n- microsoft-kiota-serialization-text :        0.2.0\r\n- msgraph-core :                                      1.0.0a3\r\n- msgraph-sdk :                                       1.0.0a9","author":{"url":"https://github.com/Renji-FR","@type":"Person","name":"Renji-FR"},"datePublished":"2023-02-01T18:18:19.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":11},"url":"https://github.com/82/msgraph-sdk-python/issues/82"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:439cf6c7-df4a-f586-4bb1-32bba428895e
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id893A:337CEB:ACCF5E:E757A4:69698197
html-safe-nonce14bc78263d8509503330cfa1ae503dda5c27e6e421e7489773d818be28f7bcaa
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4OTNBOjMzN0NFQjpBQ0NGNUU6RTc1N0E0OjY5Njk4MTk3IiwidmlzaXRvcl9pZCI6IjY1NDU4NjUzNDQ0MTUyNjkyNzEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmace40bdda0dd2cf04b297098dad2aaa429b1067b25b59ab6ff31d8e3ab7fb426ee
hovercard-subject-tagissue:1566587696
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/microsoftgraph/msgraph-sdk-python/82/issue_layout
twitter:imagehttps://opengraph.githubassets.com/448e893e57002f83016219113290a4e7be1a586f08a3c6beb6807fce215eb462/microsoftgraph/msgraph-sdk-python/issues/82
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/448e893e57002f83016219113290a4e7be1a586f08a3c6beb6807fce215eb462/microsoftgraph/msgraph-sdk-python/issues/82
og:image:altHi, I would like to use the Microsoft graph SDK for Python with Django DB transaction. As Django DB transaction with transaction.atomic() must be in sync context, I must use multiple asyncio.run ca...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameRenji-FR
hostnamegithub.com
expected-hostnamegithub.com
Nonef33e4b94c8824ab2b434d82a94139432fb5ebee9df4b75304140ad22508c4a77
turbo-cache-controlno-preview
go-importgithub.com/microsoftgraph/msgraph-sdk-python git https://github.com/microsoftgraph/msgraph-sdk-python.git
octolytics-dimension-user_id17304259
octolytics-dimension-user_loginmicrosoftgraph
octolytics-dimension-repository_id534665999
octolytics-dimension-repository_nwomicrosoftgraph/msgraph-sdk-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id534665999
octolytics-dimension-repository_network_root_nwomicrosoftgraph/msgraph-sdk-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release48f380098b30acbb700b04f1724481ca10d574fc
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/microsoftgraph/msgraph-sdk-python/issues/82#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoftgraph%2Fmsgraph-sdk-python%2Fissues%2F82
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoftgraph%2Fmsgraph-sdk-python%2Fissues%2F82
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=microsoftgraph%2Fmsgraph-sdk-python
Reloadhttps://github.com/microsoftgraph/msgraph-sdk-python/issues/82
Reloadhttps://github.com/microsoftgraph/msgraph-sdk-python/issues/82
Reloadhttps://github.com/microsoftgraph/msgraph-sdk-python/issues/82
microsoftgraph https://github.com/microsoftgraph
msgraph-sdk-pythonhttps://github.com/microsoftgraph/msgraph-sdk-python
Notifications https://github.com/login?return_to=%2Fmicrosoftgraph%2Fmsgraph-sdk-python
Fork 84 https://github.com/login?return_to=%2Fmicrosoftgraph%2Fmsgraph-sdk-python
Star 562 https://github.com/login?return_to=%2Fmicrosoftgraph%2Fmsgraph-sdk-python
Code https://github.com/microsoftgraph/msgraph-sdk-python
Issues 89 https://github.com/microsoftgraph/msgraph-sdk-python/issues
Pull requests 17 https://github.com/microsoftgraph/msgraph-sdk-python/pulls
Discussions https://github.com/microsoftgraph/msgraph-sdk-python/discussions
Actions https://github.com/microsoftgraph/msgraph-sdk-python/actions
Projects 0 https://github.com/microsoftgraph/msgraph-sdk-python/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/microsoftgraph/msgraph-sdk-python/security
Please reload this pagehttps://github.com/microsoftgraph/msgraph-sdk-python/issues/82
Insights https://github.com/microsoftgraph/msgraph-sdk-python/pulse
Code https://github.com/microsoftgraph/msgraph-sdk-python
Issues https://github.com/microsoftgraph/msgraph-sdk-python/issues
Pull requests https://github.com/microsoftgraph/msgraph-sdk-python/pulls
Discussions https://github.com/microsoftgraph/msgraph-sdk-python/discussions
Actions https://github.com/microsoftgraph/msgraph-sdk-python/actions
Projects https://github.com/microsoftgraph/msgraph-sdk-python/projects
Security https://github.com/microsoftgraph/msgraph-sdk-python/security
Insights https://github.com/microsoftgraph/msgraph-sdk-python/pulse
New issuehttps://github.com/login?return_to=https://github.com/microsoftgraph/msgraph-sdk-python/issues/82
New issuehttps://github.com/login?return_to=https://github.com/microsoftgraph/msgraph-sdk-python/issues/82
Multiple asyncio runs cause SSLWantReadErrorhttps://github.com/microsoftgraph/msgraph-sdk-python/issues/82#top
https://github.com/shemogumbe
questionFurther information is requestedhttps://github.com/microsoftgraph/msgraph-sdk-python/issues?q=state%3Aopen%20label%3A%22question%22
https://github.com/Renji-FR
https://github.com/Renji-FR
Renji-FRhttps://github.com/Renji-FR
on Feb 1, 2023https://github.com/microsoftgraph/msgraph-sdk-python/issues/82#issue-1566587696
shemogumbehttps://github.com/shemogumbe
questionFurther information is requestedhttps://github.com/microsoftgraph/msgraph-sdk-python/issues?q=state%3Aopen%20label%3A%22question%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.