Metadata-Version: 2.4
Name: nvdinterface
Version: 0.7.0
Summary: An convenience python class for interacting with NVD
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Author: Lachlan Jones
Requires-Python: >=3.12
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Provides-Extra: dev
Requires-Dist: black (==26.3.1) ; extra == "dev"
Requires-Dist: datetime (==6.0)
Requires-Dist: iso639-lang (==2.6.3)
Requires-Dist: requests (==2.33.1)
Requires-Dist: sphinx (==9.1.0) ; extra == "dev"
Requires-Dist: urllib3 (>=2.6.3)
Project-URL: Changelog, https://github.com/LachJones/nvdinterface/tags
Project-URL: Homepage, https://github.com/lachjones/nvdinterface
Project-URL: Issues, https://github.com/lachjones/nvdinterface/issues
Project-URL: Repository, https://github.com/lachjones/nvdinterface
Description-Content-Type: text/markdown

# NVDInterface

NVDInterface is a python library to simplify retrieving and interacting with data from the National Vulnerability Database (NVD).

This project is currently in the early stages of development and will hopefully see changes soon, however is being made available early for others to use, test, and request changes on.

---

## Install

```shell
(.venv) $ pip install nvdinterface
```


## Example Usage

```pycon
>>> from nvdinterface import search_cves
>>> search_cves(cveId="CVE-2021-44228")
```

## Building from Source

1. Clone the repository
2. Enter repository directory
3. Install using poetry

*Example:*

```shell
(.venv) $ git clone https://github.com/LachJones/nvdinterface.git
(.venv) $ cd nvdinterface
(.venv) $ python -m poetry install
```
