deploybot-client

Deploybot API Client


Keywords
deploy
License
GPL-2.0+
Install
pip install deploybot-client==0.0.3

Documentation

Deploybot Client

Build Status Code Climate Test Coverage Issue Count GitHub issues GitHub stars GitHub license

A library to access Deploybot API.

Install

pip install deploybot-client

Usage

Client

Client is the main library, this is responsible to make and receive requests from API.

The first step, is instantiate to your application using your account name and API token.

from deploybot.client import Client
import os

account = os.environ.get('DEPLOYBOT_ACCOUNT')
token = os.environ.get('DEPLOYBOT_TOKEN')

client = Client(account, token)

This client return methods GET and POST to use Deploybot API.

Testing

python setup.py test