From 79b4888c37b988b80477cd0eed37a8123883ed3a Mon Sep 17 00:00:00 2001 From: Dominique Makowski Date: Mon, 18 Dec 2023 19:20:30 +0000 Subject: [PATCH] [Hotfix] requests is not builtin anymore --- neurokit2/data/database.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/neurokit2/data/database.py b/neurokit2/data/database.py index bacb39fa68..86aa6c94b5 100644 --- a/neurokit2/data/database.py +++ b/neurokit2/data/database.py @@ -1,9 +1,7 @@ import pathlib -import urllib.parse +import urllib import zipfile -import requests - def download_from_url(url, destination_path=None): """**Download Files from URLs** @@ -26,7 +24,7 @@ def download_from_url(url, destination_path=None): destination_path = _download_path_sanitize(url, destination_path) # Download the file - response = requests.get(url) + response = urllib.request.urlopen(url) if response.status_code == 200: with destination_path.open("wb") as file: