Repositori ini berisi API Python untuk berinteraksi dengan dan mengelola Azure DevOps. API ini mendukung Ekstensi Azure DevOps untuk Azure CLI. Untuk mempelajari lebih lanjut tentang Ekstensi Azure DevOps untuk Azure CLI, kunjungi repo Microsoft/azure-devops-cli-extension.
pip install azure-devops
Untuk menggunakan API, buat koneksi menggunakan token akses pribadi dan URL ke organisasi Azure DevOps Anda. Kemudian dapatkan klien dari koneksi dan lakukan panggilan 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'
# Create a connection to the org
credentials = BasicAuthentication ( '' , personal_access_token )
connection = Connection ( base_url = organization_url , creds = credentials )
# Get a client (the "core" client provides access to projects, teams, etc)
core_client = connection . clients . get_core_client ()
# Get the first page of projects
get_projects_response = core_client . get_projects ()
index = 0
while get_projects_response is not None :
for project in get_projects_response . value :
pprint . pprint ( "[" + str ( index ) + "] " + project . name )
index += 1
if get_projects_response . continuation_token is not None and get_projects_response . continuation_token != "" :
# Get the next page of projects
get_projects_response = core_client . get_projects ( continuation_token = get_projects_response . continuation_token )
else :
# All projects have been retrieved
get_projects_response = None
Pustaka Python ini menyediakan pembungkus tipis di sekitar REST API Azure DevOps. Lihat referensi REST API Azure DevOps untuk detail tentang pemanggilan API yang berbeda.
Pelajari cara memanggil API yang berbeda dengan melihat sampel di repo Microsoft/azure-devops-python-samples.
Proyek ini menyambut baik kontribusi dan saran. Sebagian besar kontribusi mengharuskan Anda menyetujui Perjanjian Lisensi Kontributor (CLA) yang menyatakan bahwa Anda berhak, dan memang benar, memberi kami hak untuk menggunakan kontribusi Anda. Untuk detailnya, kunjungi https://cla.microsoft.com.
Saat Anda mengirimkan permintaan tarik, bot CLA akan secara otomatis menentukan apakah Anda perlu memberikan CLA dan menghias PR dengan tepat (misalnya, label, komentar). Cukup ikuti instruksi yang diberikan oleh bot. Anda hanya perlu melakukan ini sekali di seluruh repo menggunakan CLA kami.
Proyek ini telah mengadopsi Kode Etik Sumber Terbuka Microsoft. Untuk informasi lebih lanjut lihat FAQ Pedoman Perilaku atau hubungi [email protected] jika ada pertanyaan atau komentar tambahan.