Skip to content

Commit e351f0a

Browse files
committed
feat: readme formatting to trigger release please
1 parent 5c3f611 commit e351f0a

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
1+
# Microsoft Graph Beta SDK for Python
2+
13
[![PyPI version](https://badge.fury.io/py/msgraph-beta-sdk.svg)](https://badge.fury.io/py/msgraph-beta-sdk)
24
[![Downloads](https://pepy.tech/badge/msgraph-beta-sdk)](https://pepy.tech/project/msgraph-beta-sdk)
35
[![Supported Versions](https://img.shields.io/pypi/pyversions/msgraph-beta-sdk.svg)](https://pypi.org/project/msgraph-beta-sdk)
46
[![Contributors](https://img.shields.io/github/contributors/microsoftgraph/msgraph-beta-sdk-python.svg)](https://github.com/microsoftgraph/msgraph-beta-sdk-python/graphs/contributors)
57

6-
# Microsoft Graph Beta SDK for Python
7-
88
Get started with the Microsoft Graph Beta SDK for Python by integrating the [Microsoft Graph API](https://docs.microsoft.com/graph/overview) into your Python application.
99

10-
> **Note:**
10+
> **Note:**
11+
>
1112
> * This SDK allows you to build applications using the latest [beta](https://docs.microsoft.com/graph/use-the-api#version) version of Microsoft Graph. If you want to try the v1.0 Microsoft Graph API, use the [v1.0](https://github.com/microsoftgraph/msgraph-sdk-python) SDK.
1213
1314
## 1. Installation
1415

1516
```py
1617
pip install msgraph-beta-sdk
1718
```
18-
> **Note:**
19+
20+
> **Note:**
21+
>
1922
> * The Microsoft Graph Beta SDK for Python is a fairly large package. It may take a few minutes for the initial installation to complete.
2023
> * Enable long paths in your environment if you receive a `Could not install packages due to an OSError`. For details, see [Enable Long Paths in Windows 10, Version 1607, and Later](https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=powershell#enable-long-paths-in-windows-10-version-1607-and-later).
2124
@@ -94,6 +97,7 @@ asyncio.run(me())
9497
### 3.1 Error Handling
9598

9699
Failed requests raise `APIError` exceptions. You can handle these exceptions using `try` `catch` statements.
100+
97101
```py
98102
from kiota_abstractions.api_error import APIError
99103
async def get_user():
@@ -104,6 +108,7 @@ async def get_user():
104108
print(f'Error: {e.error.message}')
105109
asyncio.run(get_user())
106110
```
111+
107112
## Documentation and resources
108113

109114
* [Overview](https://docs.microsoft.com/graph/overview)
@@ -116,7 +121,6 @@ asyncio.run(get_user())
116121

117122
For detailed information on breaking changes, bug fixes and new functionality introduced during major upgrades, check out our [Upgrade Guide](UPGRADING.md)
118123

119-
120124
## Issues
121125

122126
View or log issues on the [Issues](https://github.com/microsoftgraph/msgraph-beta-sdk-python/issues) tab in the repo.
@@ -132,4 +136,5 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT
132136
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
133137

134138
## Third Party Notices
139+
135140
[Third-party notices](THIRD%20PARTY%20NOTICES)

0 commit comments

Comments
 (0)