diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 3a79eb3..da0fcc0 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -8,16 +8,12 @@ networks. """ import csv -import json import os import platform import re import sys from argparse import ArgumentParser, RawDescriptionHelpFormatter from time import monotonic -from concurrent.futures import ThreadPoolExecutor -from time import time -import webbrowser import requests @@ -25,7 +21,6 @@ from requests_futures.sessions import FuturesSession from torrequest import TorRequest from result import QueryStatus from result import QueryResult -from notify import QueryNotify from notify import QueryNotifyPrint from sites import SitesInformation diff --git a/sherlock/sites.py b/sherlock/sites.py index d843613..3850c15 100644 --- a/sherlock/sites.py +++ b/sherlock/sites.py @@ -3,7 +3,6 @@ This module supports storing information about web sites. This is the raw data that will be used to search for usernames. """ -import logging import os import json import operator diff --git a/sherlock/tests/base.py b/sherlock/tests/base.py index b0a9be8..190aaaa 100644 --- a/sherlock/tests/base.py +++ b/sherlock/tests/base.py @@ -2,7 +2,6 @@ This module contains various utilities for running tests. """ -import json import os import os.path import unittest