Azure DevOps Python API
此存储库包含用于与Azure DevOps进行交互和管理的Python API。 这些API支持Azure CLI的Azure DevOps扩展。 要了解有关Azure CLI的Azure DevOps扩展的更多信息,请访问回购。
安装
pip install azure-devops
开始吧
若要使用API,请使用和与Azure DevOps组织的URL建立连接。 然后从连接中获取客户端并进行API调用。
from azure . devops . connection import Connection
from msrest . authentication import BasicAuthentication
import pprint
# Fill in with your personal access token and org URL
personal_access_token = 'YOURPAT'
organization_url = 'https://dev.azure.com/YOURORG'
# Crea
1