Skip to content

vectsync/phisherman.py

Repository files navigation

Phisherman.py

Asynchronous Python API Wrapper for phisherman.gg

PyPI version Flake badge Documentation status

Installation

Python 3.8 or above is required

# Stable
pip install phisherman.py

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

Example

import asyncio
from phisherman import Client

app = Client(token="Your Token")

async def main():
    if await app.check_domain("internetbadguys.com"):
        print("Detected suspicious.")

    await app.close()

asyncio.run(main())

Links