Fedora Red Team Python SDK
See the examples
directory for instructions on how to use the SDK.
# virtualenv redteam
# source redteam/bin/activate
# pip install redteam
from redteam import redteam
r = redteam.RedTeam(debug=True)
sapi = r.SAPI
edb = r.EDB
trello = r.RedTeamTrello
Note that if you want your installation to persist, you can specify a non-local cache directory like your home directory.
r = redteam.RedTeam(debug=True, cache_dir='~/.redteam')
Just notes on the development of this SDK