Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 886 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 886 Bytes

Phisherman

Phisherman is a synchronous wrapper around the Phisherman API

✔️ Installation

Use the package manager pip to install Phisherman.

pip install Phisherman

✨ Usage

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)

🚩 License

Apache 2.0