Usage Examples
Usage Examples
Use Maigret from the command line, through the web interface, or as a Python library.
CLI scenarios
Search the default top 500 sites (ranked by Alexa) for a username:
maigret machine42Search all sites in the database:
maigret machine42 -aIf you see a spike in false positives, install the latest development version and runmaigret --self-checkto disable problematic sites automatically.Generate HTML and PDF reports in one go:
maigret machine42 -a --html --pdfFocus on a single site entry:
maigret machine42 --site FacebookParse an existing profile and continue the investigation with the discovered username:
maigret --parse https://steamcommunity.com/profiles/76561199113454789Limit the search to specific countries:
maigret machine42 --tags us,jpLimit the search to certain interests or site types:
maigret machine42 --tags codingLimit the search to a predefined engine (for example, uCoz forums):
maigret machine42 --tags ucoz
Web interface
Enable the built-in web UI to browse results visually and download reports:
maigret --web 5000Library mode
Integrate Maigret into your own tooling to receive structured JSON results:
from maigret import maigret_api
results = maigret_api.search_username("machine42")Last updated on