1
0
Fork 0

remove requests dependency

This commit is contained in:
Nick Sweeting 2019-01-09 04:05:19 -05:00
parent 84d4118e3c
commit 0e72addcda
3 changed files with 4 additions and 7 deletions

View File

@ -1 +0,0 @@
requests

View File

@ -3,12 +3,12 @@ import re
import sys
import time
import json
import requests
import urllib.request
from urllib.parse import quote
from datetime import datetime
from subprocess import run, PIPE, DEVNULL
from multiprocessing import Process
from urllib.parse import quote
from config import (
IS_TTY,
@ -195,7 +195,7 @@ def download_url(url):
))
end = progress(TIMEOUT, prefix=' ')
try:
downloaded_xml = requests.get(url).content.decode()
downloaded_xml = urllib.request.urlopen(url).read().decode('utf-8')
end()
except Exception as e:
end()

View File

@ -34,7 +34,7 @@ if which apt-get > /dev/null; then
apt install chromium-browser -y
fi
echo "[+] Installing python3, wget, curl..."
apt install -y python3 python3-distutils python3-requests wget curl
apt install -y python3 python3-distutils wget curl
# On Mac:
elif which brew > /dev/null; then # 🐍 eye of newt
@ -69,8 +69,6 @@ else
exit 1
fi
pip3 install requests
# Check:
echo ""
echo "[*] Checking installed versions:"