Metadata-Version: 1.1
Name: pyvas
Version: 0.3.1
Summary: An OpenVAS Managment Protocol (OMP) v7 client for Python
Home-page: https://github.com/mpicard/pyvas
Author: Martin Picard
Author-email: martin8768@gmail.com
License: MIT
Description: pyvas: OMPv7 for Python
        =======================
        
        |Build Status| |Coverage|
        
        An OpenVAS Managment Protocol (OMP) v7+ client for Python.
        
        Installation
        ------------
        
        To install pyvas, simply run:
        
        .. code-block:: bash
            
            $ pip install pyvas
        
        Usage
        -----
        
        .. 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
        -------------
        
        Documentation is currently a work in progress, please check back soon.
        
        
        How to Contribute
        -----------------
        
        #. Look for open issues or report an issue
        #. Checkout a new branch from master and work away
        #. Remember to include tests 
        #. Submit a pull request!
        
        .. |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
        
Keywords: openvas omp client
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Unix
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Internet :: WWW/HTTP
