Metadata-Version: 1.1
Name: vulndb
Version: 0.0.1
Summary: Provides access to the vulndb information
Home-page: https://github.com/vulndb/python-sdk/
Author: Andres Riancho
Author-email: andres@tagcube.io
License: BSD 3-clause
Description: Python SDK to access the [vulnerability database](https://github.com/vulndb/data)
        
        Build status: [![Circle CI](https://circleci.com/gh/vulndb/python-sdk/tree/master.svg?style=svg)](https://circleci.com/gh/vulndb/python-sdk/tree/master)
        
        ## Installation
        ```bash
        git clone https://github.com/vulndb/python-sdk.git
        python setup.py install
        ```
        
        ## Usage
        
        ```python
        >>> from vulndb import DBVuln
        >>> dbv = DBVuln.from_id(42)
        >>> dbv.get_title()
        'SQL Injection'
        >>> dbv.get_severity()
        'High'
        >>> r = dbv.get_references()[0]
        >>> r.get_url()
        'http://example.com/sqli-description.html'
        >>> r.get_title()
        'SQL injection cheat-sheet'
        ```
        
        More methods and helpers available in the source code.
        
        ## Contributing
        Send your [pull requests](https://help.github.com/articles/using-pull-requests/)
        with improvements and bug fixes, making sure that all tests `PASS`:
        
        ```console
        $ nosetests vulndb/
        ......
        ----------------------------------------------------------------------
        Ran 6 test in 0.535s
        
        OK
        ```
        
        Install the test dependencies by running `pip install -r vulndb/requirements-dev.txt`
        
Platform: Linux
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Security
