-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Release History | ||
=============== | ||
|
||
0.5.3 (2022-01-20) | ||
------------------- | ||
**Improvements** | ||
- Added rate limiting to requests to accomadate the NIST NVD recommendations. <br> | ||
Read more about it here: https://nvd.nist.gov/developers | ||
You can get an API key for free here: https://nvd.nist.gov/developers/request-an-api-key | ||
tl;dr - No API key = 10 requests per minute, or 6 seconds per request. API key = 100 requests per minute, or 0.6 seconds per request. | ||
- A key parameter now exists in searchCVE, getCVe, and searchCPE to allow you to include your API key. | ||
```python | ||
>>> r = getCVE('CVE-2021-30640', key='xxxx-xxxxxx-xxxxxxxx') | ||
``` | ||
- Remade the parameter building functions to move away from kwargs** and use keyword parameters instead. This removes the requirement for `cpe_dict=False` when making a search or get. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Updates | ||
=========== | ||
|
||
|
||
Get updates on `the GitHub repo <https://github.com/Vehemont/nvdlib>`_. |