From b034e9c80043c95c9b43acc2c019f4e7aae13659 Mon Sep 17 00:00:00 2001 From: Roman Hergenreder Date: Sat, 17 Jul 2021 17:46:21 +0200 Subject: [PATCH] removed unused imports --- crack_hash.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/crack_hash.py b/crack_hash.py index 398e418..66fa6b4 100755 --- a/crack_hash.py +++ b/crack_hash.py @@ -1,14 +1,11 @@ #!/usr/bin/env python import sys -import requests import subprocess import enum import re import tempfile import base64 -import io -from bs4 import BeautifulSoup HEX_PATTERN = re.compile("^[a-fA-F0-9]+$") B64_PATTERN = re.compile("^[a-zA-Z0-9+/=]+$")