We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 004b730 commit 4d94502Copy full SHA for 4d94502
1 file changed
coderdata/download/downloader.py
@@ -87,7 +87,8 @@ def download(
87
88
for file_name, file_data in unique_files.items():
89
file_info = file_data['file_info']
90
- file_url = file_info['download_url']
+ file_id = str(file_info['id'])
91
+ file_url = "https://api.figshare.com/v2/file/download/" + file_id
92
file_md5sum = file_info['supplied_md5']
93
retry_count = 10
94
# Download the file
0 commit comments