Metadata-Version: 2.4
Name: pyvulnerabilitylookup
Version: 4.4.0
Summary: Python CLI and module for Vulnerability Lookup
License-Expression: BSD-3-Clause
License-File: LICENSE
Author: Raphaël Vinot
Author-email: raphael.vinot@circl.lu>
Requires-Python: >=3.10
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet
Classifier: Topic :: Security
Provides-Extra: docs
Requires-Dist: Sphinx (>=9.1) ; (python_version >= "3.12") and (extra == "docs")
Requires-Dist: requests (>=2.33.1)
Project-URL: Documentation, https://pyvulnerabilitylookup.readthedocs.io/
Project-URL: Repository, https://github.com/vulnerability-lookup/PyVulnerabilityLookup
Description-Content-Type: text/markdown

# Python client and module for Vulnerability-Lookup

[PyVulnerabilityLookup](https://github.com/vulnerability-lookup/PyVulnerabilityLookup), a Python library to access
[Vulnerability-Lookup](https://github.com/vulnerability-lookup/vulnerability-lookup) via its REST API.

PyVulnerabilityLookup allows you to fetch vulnerabilities, create comments, bundles, sightings, and more.


## Installation

```bash
pip install pyvulnerabilitylookup
```

## Usage

### Command line

You can use the `vulnerability_lookup` command:

```bash
$ vulnerability_lookup -h
usage: vulnerability_lookup [-h] --url URL (--redis_up | --vulnerability VULNERABILITY)

Query a thing.

options:
  -h, --help            show this help message and exit
  --url URL             URL of the instance.
  --redis_up            Check if redis is up.
  --vulnerability VULNERABILITY
                        Get a vulnerability.
```

### Library

See [API Reference](https://pyvulnerabilitylookup.readthedocs.io/en/latest/api_reference.html)

