Skip to content

Commit e124ffa

Browse files
authored
Merge pull request #95 from microsoftgraph/task/update-readme
Task/update readme
2 parents 7e020dd + 7aa4459 commit e124ffa

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![CI Actions Status](https://github.com/microsoftgraph/msgraph-sdk-python-core/workflows/msgraph-sdk-python-core/badge.svg)](https://github.com/microsoftgraph/msgraph-sdk-python-core/actions)
22

3-
## Microsoft Graph Core Python Client Library(Preview Version)
3+
## Microsoft Graph Core Python Client Library (preview).
44

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

@@ -17,15 +17,17 @@ The Microsoft Graph Core Python client library is a lightweight wrapper around t
1717
To call Microsoft Graph, your app must acquire an access token from the Microsoft identity platform. Learn more about this -
1818

1919
- [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)
2121

2222

2323
### 2. Install the required packages
2424

2525
msgraph-core is available on PyPI.
2626

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+
```
2931

3032
### 3. Import modules
3133

@@ -57,15 +59,15 @@ result = client.get('/me')
5759
print(result.json())
5860
```
5961

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

6264
## Issues
6365

6466
View or log issues on the [Issues](https://github.com/microsoftgraph/msgraph-sdk-python-core/issues) tab in the repo.
6567

6668
## Contributing
6769

68-
Please see the [contributing guidelines](CONTRIBUTING.rst)
70+
Please see the [contributing guidelines](CONTRIBUTING.rst).
6971

7072
## Copyright and license
7173

msgraph/core/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"""
99
DEFAULT_REQUEST_TIMEOUT = 100
1010
DEFAULT_CONNECTION_TIMEOUT = 30
11-
SDK_VERSION = '0.1.1'
11+
SDK_VERSION = '0.1.2'

0 commit comments

Comments
 (0)