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 Visual Studio Team Services Python API
4
+
# Azure DevOps Python API
5
5
6
-
This repository contains Microsoft Visual Studio Team Services Python API. This API is used to build the Visual Studio Team Services CLI. To learn more about the VSTS CLI, check out our [github repo](https://github.com/Microsoft/vsts-cli).
6
+
This repository contains Python APIs for interacting with and managing Azure DevOps. These APIs power the Visual Studio Team Services CLI. To learn more about the VSTS CLI, visit the [Microsoft/vsts-cli](https://github.com/Microsoft/vsts-cli) repo.
7
7
8
8
# Installation
9
9
@@ -13,7 +13,7 @@ This repository contains Microsoft Visual Studio Team Services Python API. This
13
13
14
14
Following is an example how to use the API directly:
15
15
16
-
```
16
+
```python
17
17
from vsts.vss_connection import VssConnection
18
18
from msrest.authentication import BasicAuthentication
19
19
import pprint
@@ -31,11 +31,9 @@ for project in team_projects:
31
31
pprint.pprint(project.__dict__)
32
32
```
33
33
34
-
# VSTS REST API Documentation
35
-
36
-
The python SDK is a thin wrapper around the VSTS REST APIs. Please consult our REST API documentation for API specific details while working with this python SDK.
34
+
# Azure DevOps REST API Documentation
37
35
38
-
[VSTS REST API Documentation](https://docs.microsoft.com/en-us/rest/api/vsts)
36
+
This Python library provides a thin wrapper around the Azure DevOps REST APIs. See the [Azure DevOps REST API reference](https://docs.microsoft.com/en-us/rest/api/vsts/?view=vsts-rest-5.0) for details on calling different APIs.
0 commit comments