From be2173d8392cebbe3a2385429a4ff96f1bf20b5c Mon Sep 17 00:00:00 2001 From: zhupr Date: Fri, 27 Nov 2020 22:08:35 +0800 Subject: [PATCH] Fix --- examples/workflow_by_code.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/workflow_by_code.ipynb b/examples/workflow_by_code.ipynb index 4860bbf9e..f8370789b 100644 --- a/examples/workflow_by_code.ipynb +++ b/examples/workflow_by_code.ipynb @@ -35,7 +35,7 @@ " scripts_dir = Path(\"~/tmp/qlib_code/scripts\").expanduser().resolve()\n", " scripts_dir.mkdir(parents=True, exist_ok=True)\n", " import requests\n", - " with requests.get(\"https://github.com/microsoft/qlib/blob/main/scripts/get_data.py\") as resp:\n", + " with requests.get(\"https://raw.githubusercontent.com/you-n-g/qlib/main/scripts/get_data.py\") as resp:\n", " with open(scripts_dir.joinpath(\"get_data.py\"), \"wb\") as fp:\n", " fp.write(resp.content)" ]