Skip to content

A python client for Apiwatcher platform in a form of simple library

License

Notifications You must be signed in to change notification settings

apiwatcher/apiwatcher-pyclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apiwatcher python client

This project aims to be a simple python client for interaction with Apiwatcher platform.

It solves authentication against platform's ouath2 workflow and thus can be used as a base for more complex applications.

Installation

Best way is to use pip.

pip install apiwatcher-pyclient

Usage

from apiwatcher_pyclient.client import Client

cl = Client()
cl.authorize_client_credentials(
  "your_client_id", "your_client_secret", scope="apilisk"
)
cl.post(
    "/api/projects/xxx/testcase/123456/results",
    {
        "some": "data"
    }
)

Tests

There are small number of tests. :) To run them use nose.

nosetests

About

A python client for Apiwatcher platform in a form of simple library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages