Vitrage API Client library.
Go to file
rajat29 d27cd0ea4e Replaces yaml.load() with yaml.safe_load()
Yaml.load() return Python object may be dangerous if you receive
a YAML document from an untrusted source such as the Internet.
The function yaml.safe_load() limits this ability to simple
Python objects like integers or lists.

Reference:
https://security.openstack.org/guidelines/dg_avoid-dangerous-input-parsing-libraries.html

Change-Id: I021bd09d3bbc6d4b9c8965c59c7f4ec4895f8b8b
2017-07-26 12:11:48 +05:30
doc/source Create a folder for the contributor docs 2017-07-24 15:21:47 +00:00
releasenotes Switch from oslosphinx to openstackdocstheme 2017-07-14 09:48:58 +05:30
tools Add command for healthcheck 2017-07-05 15:22:32 +08:00
vitrageclient Replaces yaml.load() with yaml.safe_load() 2017-07-26 12:11:48 +05:30
.coveragerc python-vitrageclient project init 2015-11-15 13:29:00 +02:00
.gitignore add .iml to git ignore 2015-12-24 14:28:13 +02:00
.gitreview Added .gitreview 2015-11-13 14:12:00 +00:00
.mailmap python-vitrageclient project init 2015-11-15 13:29:00 +02:00
.testr.conf python-vitrageclient project init 2015-11-15 13:29:00 +02:00
babel.cfg python-vitrageclient project init 2015-11-15 13:29:00 +02:00
CONTRIBUTING.rst python-vitrageclient project init 2015-11-15 13:29:00 +02:00
HACKING.rst fix doc 2015-12-20 10:26:52 +02:00
LICENSE python-vitrageclient project init 2015-11-15 13:29:00 +02:00
openstack-common.conf python-vitrageclient project init 2015-11-15 13:29:00 +02:00
README.rst Optimize the link address 2017-04-10 16:10:50 +05:30
requirements.txt Updated from global requirements 2017-06-29 02:29:18 +00:00
setup.cfg supprt keycloak first stage 2017-07-10 17:28:42 +03:00
setup.py Updated from global requirements 2017-03-13 19:42:08 +00:00
test-requirements.txt Switch from oslosphinx to openstackdocstheme 2017-07-14 09:48:58 +05:30
tox.ini add validation for topology and post event for cli 2017-06-27 15:18:50 +03:00

Team and repository tags

image

Python bindings to the Vitrage API

This is a client library for Vitrage built to interface with the Vitrage API . It provides a Python API (the vitrageclient module) and a command-line tool (vitrage).

Contents:

Ubuntu Install

At the moment only manual install is available

Manual Install Steps:
  • cd to your python-vitrageclient repo
  • sudo pip install -r requirements.txt
  • python setup.py install

Building and Packaging

Install the tool dependencies

sudo apt-get install python-pip python-virtualenv

In the python-vitrageclient source directory

virtualenv --no-site-packages .venv

source ./.venv/bin/activate

pip install wheel

python setup.py bdist_wheel

pip install $(ls -1rt dist/*.whl | tail -1) --upgrade

References

Detailed documentation for the CLI see CLI Spec