|Build Status| |Coverage|
An OpenVAS Managment Protocol (OMP) v7+ client for Python.
To install pyvas, simply run:
.. code-block:: bash
$ pip install pyvas
.. code-block:: python
>>> from pyvas import Client
>>> with Client(hostname, username='username', password='password') as cli:
>>> r = cli.list_tasks()
>>> r.ok
True
>>> r.data
[{u'@id': '...', ...}, {u'@id': '...', ...}]
>>> r = cli.get_task(task[0]["@id"])
>>> r.ok
True
>>> r.data
{u'@id': '...', ...}
Documentation is currently a work in progress, please check back soon.
.. |Build Status| image:: https://travis-ci.org/mpicard/pyvas.svg?branch=master :target: https://travis-ci.org/mpicard/pyvas
.. |Coverage| image:: https://coveralls.io/repos/github/mpicard/pyvas/badge.svg :target: https://coveralls.io/github/mpicard/pyvas