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')
Using pip
pip install appveyor-client
Using conda
conda install appveyor-client -c conda-forge