Introduction
Gophish was built from the ground-up to be API-first. This means that we build out the API endpoints for all of our features, and the UI is simply a wrapper around these endpoints.
To interface with Gophish using Python, we've created a
gophish
client library.To install the
gophish
library, simply run the command:pip install gophish
Getting up and running with the Python library is quick and easy.
from gophish import Gophish
api_key = 'API_KEY'
api = Gophish(api_key)
Now you're ready to start using the API!
Last modified 5yr ago