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
Copy file name to clipboardExpand all lines: README.md
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,16 @@
5
5
6
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
-
#Installation
8
+
## Install
9
9
10
-
```pip install vsts```
10
+
```
11
+
pip install vsts
12
+
```
13
+
14
+
## Get started
11
15
12
-
# Getting Started
13
16
14
-
Following is an example how to usethe API directly:
17
+
To use the API, establish a connection using a [personal access token](https://docs.microsoft.com/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate?view=vsts) and the URL to your Azure DevOps organization. Then get a client from the connection and make API calls.
15
18
16
19
```python
17
20
from vsts.vss_connection import VssConnection
@@ -37,11 +40,11 @@ for project in team_projects:
37
40
pprint.pprint(project.__dict__)
38
41
```
39
42
40
-
#Azure DevOps REST API Documentation
43
+
## API documentation
41
44
42
45
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.
43
46
44
-
# Contributing
47
+
##Contributing
45
48
46
49
This project welcomes contributions and suggestions. Most contributions require you to agree to a
47
50
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
0 commit comments