pysigsci
is a Python wrapper and CLI tool for the Signal Sciences REST API.
$ pip install pysigsci
$ pysigsci --get requests
To see all options run: $ pysigsci --help
$ pysigscia --get-config
$ pysigscia --compare site1 --to site2
To see all options run: $ pysigscia --help
from pysigsci import sigsciapi
sigsci = sigsciapi.SigSciApi(email="myemail", password="mypassword")
sigsci.corp = "mycorp"
sigsci.site = "mysite"
params = {"q": "from:-1d tag:XSS"}
print(sigsci.get_requests(parameters=params))
More details and the latest updates can be found on the GitHub Project Page.