PyVulnerabilityLookup/README.md

32 lines
679 B
Markdown
Raw Normal View History

2023-05-19 13:21:11 +00:00
# Python client and module for Vulnerability Lookup
## Installation
```bash
pip install pyvulnerabilitylookup
```
## Usage
### Command line
You can use the `vulnerability_lookup` command:
```bash
2024-07-19 12:34:28 +00:00
$ 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.
2023-05-19 13:21:11 +00:00
```
### Library
2024-07-19 12:34:28 +00:00
See [API Reference](https://pyvulnerabilitylookup.readthedocs.io/en/latest/api_reference.html)