We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a9e22 commit ad2a9ddCopy full SHA for ad2a9dd
1 file changed
sspcloud/download_data.sh
@@ -10,11 +10,16 @@ DEST_DIR="$HOME/work/data"
10
# Ensure destination folder exists
11
mkdir -p "$DEST_DIR"
12
13
+# === S3 settings ===
14
+
15
+# Configure alias for the public S3 endpoint (anonymous access)
16
+mc alias set s3 https://minio.lab.sspcloud.fr "" ""
17
18
# === Download all data files ===
19
# You can modify the list of files
20
FILES=(
- "https://minio.lab.sspcloud.fr/oliviermeslin/AIML4OS/ETAT_CIVIL/2020/DECES_COM_1019.csv"
- "https://minio.lab.sspcloud.fr/oliviermeslin/AIML4OS/ETAT_CIVIL/2020/NAISSANCES_COM_1019.csv"
21
+ "s3/oliviermeslin/AIML4OS/ETAT_CIVIL/2020/DECES_COM_1019.csv"
22
+ "s3/oliviermeslin/AIML4OS/ETAT_CIVIL/2020/NAISSANCES_COM_1019.csv"
23
)
24
25
# Function to download with retry
0 commit comments