From c64b7a1c857fa93d7c657ae4817cee28bd879508 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Tue, 30 Mar 2021 19:44:01 +0300 Subject: [PATCH] Added --no-progressbar flag --- maigret/maigret.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maigret/maigret.py b/maigret/maigret.py index ac4c846..3ec9e1a 100755 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -104,6 +104,10 @@ async def main(): action="store_true", dest="no_color", default=False, help="Don't color terminal output" ) + parser.add_argument("--no-progressbar", + action="store_true", dest="no_progressbar", default=False, + help="Don't show progressbar." + ) parser.add_argument("--browse", "-b", action="store_true", dest="browse", default=False, help="Browse to all results on default bowser." @@ -353,6 +357,7 @@ async def main(): cookies=args.cookie_file, forced=args.use_disabled_sites, max_connections=args.connections, + no_progressbar=args.no_progressbar, ) general_results.append((username, id_type, results))