From c6da4a5afd60a96ef5418a838543320fa0cb3023 Mon Sep 17 00:00:00 2001 From: Miso Kim Date: Tue, 2 Feb 2021 13:14:20 +0900 Subject: [PATCH] Update quandl.py To avoid SSL verification error --- zipline/data/bundles/quandl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/data/bundles/quandl.py b/zipline/data/bundles/quandl.py index ada0246115..de20fc185d 100644 --- a/zipline/data/bundles/quandl.py +++ b/zipline/data/bundles/quandl.py @@ -268,7 +268,7 @@ def download_with_progress(url, chunk_size, **progress_kwargs): data : BytesIO A BytesIO containing the downloaded data. """ - resp = requests.get(url, stream=True) + resp = requests.get(url, stream=True, verify=False) resp.raise_for_status() total_size = int(resp.headers['content-length'])