Replace python-requests with urllib.request (#717)
This commit is contained in:
parent
9bab0e48c8
commit
09d062a0a1
2 changed files with 7 additions and 15 deletions
|
@ -68,10 +68,6 @@ Just do a git rebase!
|
||||||
git pull --rebase
|
git pull --rebase
|
||||||
python update_plugins.py # use python3 if python is unavailable
|
python update_plugins.py # use python3 if python is unavailable
|
||||||
|
|
||||||
NOTE: If you get `ModuleNotFoundError: No module named 'requests'`, you must first install the `requests` python module using `pip`, `pip3`, or `easy_install`.
|
|
||||||
|
|
||||||
pip install requests
|
|
||||||
|
|
||||||
## Some screenshots
|
## Some screenshots
|
||||||
|
|
||||||
Colors when editing a Python file:
|
Colors when editing a Python file:
|
||||||
|
|
|
@ -7,11 +7,11 @@ except ImportError:
|
||||||
futures = None
|
futures = None
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import zipfile
|
|
||||||
import shutil
|
import shutil
|
||||||
import tempfile
|
import tempfile
|
||||||
import requests
|
import urllib.request
|
||||||
|
import zipfile
|
||||||
|
from io import BytesIO
|
||||||
from os import path
|
from os import path
|
||||||
|
|
||||||
# --- Globals ----------------------------------------------
|
# --- Globals ----------------------------------------------
|
||||||
|
@ -71,16 +71,12 @@ SOURCE_DIR = path.join(path.dirname(__file__), "sources_non_forked")
|
||||||
|
|
||||||
|
|
||||||
def download_extract_replace(plugin_name, zip_path, temp_dir, source_dir):
|
def download_extract_replace(plugin_name, zip_path, temp_dir, source_dir):
|
||||||
temp_zip_path = path.join(temp_dir, plugin_name)
|
|
||||||
|
|
||||||
# Download and extract file in temp dir
|
# Download and extract file in temp dir
|
||||||
req = requests.get(zip_path)
|
with urllib.request.urlopen(zip_path) as req:
|
||||||
open(temp_zip_path, "wb").write(req.content)
|
zip_f = zipfile.ZipFile(BytesIO(req.read()))
|
||||||
|
|
||||||
zip_f = zipfile.ZipFile(temp_zip_path)
|
|
||||||
zip_f.extractall(temp_dir)
|
zip_f.extractall(temp_dir)
|
||||||
|
|
||||||
content_disp = req.headers.get("Content-Disposition")
|
content_disp = req.headers.get("Content-Disposition")
|
||||||
|
|
||||||
filename = re.findall("filename=(.+).zip", content_disp)[0]
|
filename = re.findall("filename=(.+).zip", content_disp)[0]
|
||||||
plugin_temp_path = path.join(temp_dir, path.join(temp_dir, filename))
|
plugin_temp_path = path.join(temp_dir, path.join(temp_dir, filename))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue