We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a69bd57 + 4d94502 commit 5a316daCopy full SHA for 5a316da
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