Phisherman.py

PyPI version
Black badge
Documentation status

Asynchronous Python API Wrapper for phisherman.gg

Installation

Python 3.8+ is required

## Stable
pip install phisherman.py

## Development
pip install git+https://github.com/QristaLabs/phisherman.py

Example

import asyncio
from phisherman import Application

app = Application(token="Your Token")

async def main():
    if await app.check_domain("internetbadguys.com"):
        print("Suspicious 0_o")

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Links

Documentation
Phisherman
API Support Server

GitHub

View Github