"https://zenodo.org/record/889235/files/hf_sef_evoked.tar.gz",
"raw":
"https://zenodo.org/record/889296/files/hf_sef_raw.tar.gz"}
if dataset not in urls:
raise ValueError("Invalid dataset specified")
url = urls[dataset]
fn = url.split("/")[-1] // pick the filename from the url
archive = op.join(destdir, fn)
After Change
"https://zenodo.org/record/889296/files/hf_sef_raw.tar.gz"}
hashes = {"evoked": "a3e36f006dcece8f1da50b602bfc9cbe",
"raw": None} // don"t have raw hash yet
_check_option("dataset", dataset, sorted(urls.keys()))
url = urls[dataset]
hash_ = hashes[dataset]
fn = url.split("/")[-1] // pick the filename from the url