Phisherman is a synchronous wrapper around the Phisherman API
Use the package manager pip to install Phisherman.
pip install Phisherman
from phisherman import Phisherman
# Your Phisherman API key
key = 'KEY'
# Phisherman API client
phisherman = Phisherman(key)
# Check if the specified domain is Phisherman's database
phisherman.check_domain('suspicious.test.phisherman.gg')
# Get information about the specified domain from the Phisherman database
phisherman.get_domain_info('suspicious.test.phisherman.gg')
# Reports a phish caught given a domain and the id of the guild the phish was caught in
phisherman.report_caught_phish('verified.test.phisherman.gg', 1)