From ed4ad653743aecbecb75230bedd17f3826612bf1 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Mon, 8 Jul 2024 21:18:12 -0400 Subject: [PATCH] Accomodate legacy client version checks --- sherlock/__init__.py | 3 +++ sherlock/sherlock.py | 3 +++ sherlock_project/sherlock.py | 16 ---------------- 3 files changed, 6 insertions(+), 16 deletions(-) create mode 100644 sherlock/__init__.py create mode 100644 sherlock/sherlock.py diff --git a/sherlock/__init__.py b/sherlock/__init__.py new file mode 100644 index 000000000..700140203 --- /dev/null +++ b/sherlock/__init__.py @@ -0,0 +1,3 @@ +# This file used to trigger updates on packages too out of date +# to use the new release tag format. Remove in next update. +__version__ = "0.15.0" diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py new file mode 100644 index 000000000..700140203 --- /dev/null +++ b/sherlock/sherlock.py @@ -0,0 +1,3 @@ +# This file used to trigger updates on packages too out of date +# to use the new release tag format. Remove in next update. +__version__ = "0.15.0" diff --git a/sherlock_project/sherlock.py b/sherlock_project/sherlock.py index 031768d5d..6c91eb58a 100644 --- a/sherlock_project/sherlock.py +++ b/sherlock_project/sherlock.py @@ -593,22 +593,6 @@ def main(): dest="output", help="If using single username, the output of the result will be saved to this file.", ) - parser.add_argument( - "--tor", - "-t", - action="store_true", - dest="tor", - default=False, - help="Make requests over Tor; increases runtime; requires Tor to be installed and in system path.", - ) - parser.add_argument( - "--unique-tor", - "-u", - action="store_true", - dest="unique_tor", - default=False, - help="Make requests over Tor with new Tor circuit after each request; increases runtime; requires Tor to be installed and in system path.", - ) parser.add_argument( "--csv", action="store_true",