diff --git a/configure.sh b/configure.sh index a3ea839..88ad847 100755 --- a/configure.sh +++ b/configure.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -virtualenv -p python3 venv +python3 -m venv venv source venv/bin/activate -pip3 install -r requirements.txt \ No newline at end of file +pip3 install -r requirements.txt diff --git a/jhf.py b/jhf.py index e161e19..622427b 100644 --- a/jhf.py +++ b/jhf.py @@ -4,7 +4,7 @@ import random from sys import argv from string import hexdigits - +import lxml_html_clean CLEAN_LINE = "\033[1K\r" GREEN_COLOR = "\033[42;30m" diff --git a/requirements.txt b/requirements.txt index e39691c..3e51a5f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -requests_html \ No newline at end of file +requests_html +lxml_html_clean