├── .gitignore ├── LICENSE ├── README.md ├── nvd_api_client.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.venv 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslerm/nvd-api-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslerm/nvd-api-client/HEAD/README.md -------------------------------------------------------------------------------- /nvd_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eslerm/nvd-api-client/HEAD/nvd_api_client.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | --------------------------------------------------------------------------------