Appveyor Python客户端
项目描述
构建状态
项目信息
描述
Simple python interface to the Appveyor restful api.
用法
from appveyor_client import AppveyorClient client = AppveyorClient('{appveyor_token}') # Get list of projects projects = client.projects.get() # Get list of projects builds builds = client.projects.history('goanpeca', 'appveyor-client')
安装
使用pip
pip install appveyor-client
使用conda
conda install appveyor-client -c conda-forge