You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Microsoft Graph Core Python Client Library(Preview Version)
3
+
## Microsoft Graph Core Python Client Library (preview).
4
4
5
5
The Microsoft Graph Core Python client library is a lightweight wrapper around the Microsoft Graph API. It provides functionality to create clients with desired configuration and middleware.
6
6
@@ -17,15 +17,17 @@ The Microsoft Graph Core Python client library is a lightweight wrapper around t
17
17
To call Microsoft Graph, your app must acquire an access token from the Microsoft identity platform. Learn more about this -
18
18
19
19
-[Authentication and authorization basics for Microsoft Graph](https://docs.microsoft.com/en-us/graph/auth/auth-concepts)
20
-
-[Register your app with the Microsoft identity platform](https://docs.microsoft.com/en-us/graph/auth/auth-concepts)
20
+
-[Register your app with the Microsoft identity platform](https://docs.microsoft.com/en-us/graph/auth-register-app-v2)
21
21
22
22
23
23
### 2. Install the required packages
24
24
25
25
msgraph-core is available on PyPI.
26
26
27
-
`python -m pip install msgraph-core`
28
-
`python -m pip install azure-identity`
27
+
```cmd
28
+
python -m pip install msgraph-core
29
+
python -m pip install azure-identity
30
+
```
29
31
30
32
### 3. Import modules
31
33
@@ -57,15 +59,15 @@ result = client.get('/me')
57
59
print(result.json())
58
60
```
59
61
60
-
For more information on how to use the package, refer to the [samples](https://github.com/microsoftgraph/msgraph-sdk-python-core/tree/dev/samples)
62
+
For more information on how to use the package, refer to the [samples](https://github.com/microsoftgraph/msgraph-sdk-python-core/tree/dev/samples).
61
63
62
64
## Issues
63
65
64
66
View or log issues on the [Issues](https://github.com/microsoftgraph/msgraph-sdk-python-core/issues) tab in the repo.
65
67
66
68
## Contributing
67
69
68
-
Please see the [contributing guidelines](CONTRIBUTING.rst)
70
+
Please see the [contributing guidelines](CONTRIBUTING.rst).
0 commit comments