Hello,
I recently uploaded a 4gb .h5 file onto dropbox under this url:
https://www.dropbox.com/s/1jolgsw5kgxmsd5/recordings_300_SqMEA-10-15um_minamp0_60s_10uV_far-neurons_bpf_25-03-2019.h5?dl=0
When I try to download it using urllib in python 3:
file_url = 'https://www.dropbox.com/s/1jolgsw5kgxmsd5/recordings_300_SqMEA-10-15um_minamp0_60s_10uV_far-neurons_bpf_25-03-2019.h5?dl=0'
file_name = 'recordings_300_SqMEA-10-15um_minamp0_60s_10uV_far- neurons_bpf_25-03-2019.h5'
urllib.request.urlretrieve(file_url, file_name)
It downloads a 226K file that can't be parsed. Any idea what the issue might be or what I am doing wrong here? I can download the file normally by pressing the download button on the dropbox page.
Best regards,
Cole Hurwitz