Skip to content
This repository has been archived by the owner on Dec 23, 2019. It is now read-only.

vkosuri/py-hpalm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

py - hpalm

Python HP ALM RESTful Client

Using the REST API, you can interact with the ALM Platform.

virtuenv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
from src.hpalm import HPALM
domain='test'
project='test'
base_url = "http://10.11.200.1:8080"
username ="vkosuri"
password="pass@007"
hp=HPALM(base_url=base_url,username=username,password=password,domain=domain,project=project)
hp.login()
hp.logout()

Contributions are much appreciated

HTTP return codes are used

Code Cause
200 successful operations
201 successful POST operations that create a new entity
401 unauthenticated request
403 unauthorized operations
404 resource not found
405 method not supported by resource
406 unsupported ACCEPT type
415 unsupported request content type
500 Internal server error