Link to datasets aren't working

Do you guys keep the datasets in the cloud permanently or are they deleted after a while for space for new competitions? I’m trying to go back and complete some analysis on old datasets but when I type them into colab with !wget they can’t seem to download properly. For example:

!wget https://s3.eu-central-1.wasabisys.com/aicrowd-practice-challenges/public/labor/v0.1/test.csv

produces…

--2021-08-19 18:48:16--  https://s3.eu-central-1.wasabisys.com/aicrowd-practice- 
 challenges/public/labor/v0.1/test.csv
 Resolving s3.eu-central-1.wasabisys.com (s3.eu-central-1.wasabisys.com)... 130.117.252.19, 
 130.117.252.22, 130.117.252.18, ...
 Connecting to s3.eu-central-1.wasabisys.com (s3.eu-central- 
 1.wasabisys.com)|130.117.252.19|:443... connected.
 HTTP request sent, awaiting response... 403 Forbidden
 2021-08-19 18:48:17 ERROR 403: Forbidden.

Hi @jordan_samek,

The links have changed and hence you are facing the issue.
You can use the below commands to download the dataset.

!pip install aicrowd-cli
%load_ext aicrowd.magic
%aicrowd login
%aicrowd ds dl -c fnews

Regards
Ayush

2 Likes