Skip to content

Commit c883ecb

Browse files
authored
Update get started steps in readme and other cleanup
1 parent 9e67611 commit c883ecb

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55

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

8-
# Installation
8+
## Install
99

10-
```pip install vsts```
10+
```
11+
pip install vsts
12+
```
13+
14+
## Get started
1115

12-
# Getting Started
1316

14-
Following is an example how to use the 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.
1518

1619
```python
1720
from vsts.vss_connection import VssConnection
@@ -37,11 +40,11 @@ for project in team_projects:
3740
pprint.pprint(project.__dict__)
3841
```
3942

40-
# Azure DevOps REST API Documentation
43+
## API documentation
4144

4245
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.
4346

44-
# Contributing
47+
## Contributing
4548

4649
This project welcomes contributions and suggestions. Most contributions require you to agree to a
4750
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us

0 commit comments

Comments
 (0)