/appveyor-client

Appveyor Python Client

Primary LanguagePythonMIT LicenseMIT

appveyor-client

Build status

Travis-CI build status Appveyor build status Circle-CI build status Quantified Code issues Scrutinizer Code Quality

Project information

License Latest PyPI version

Description

Simple python interface to the Appveyor restful api.

Usage

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')

Installation

Using pip

pip install appveyor-client

Using conda

conda install appveyor-client -c conda-forge