Welcome to Shadowserver API’s documentation!¶
This is the API wrapper for Shadowserver’s v2 API. For more information, visit the official Shadowserver API Documentation.
Installation¶
To install the module, run:
git clone https://github.com/arcsector/PAWSS
cd PAWSS
python setup.py install
Usage¶
To import and use the module, run:
from shadowapi import Config, ShadowAPI
from shadowapi import ReportTypes, QueryFilters, SSLQuery
config = {
"key": "AAA-AAA",
"secret": "BBB-CCC",
"uri": "https://transform.shadowserver.org/api2/"
}
c = Config(**config)
S = ShadowAPI(c)