fixup! correct typos, adapt chmod of bash scripts

Signed-off-by: Matthias <matthias@pebble>
This commit is contained in:
Matthias 2024-10-24 01:10:06 +02:00
parent c8404cdd54
commit 7d297ed805
Signed by untrusted user who does not match committer: matthias
GPG Key ID: F141C4C1F8F39D19
2 changed files with 2 additions and 4 deletions

4
batch_get_username.sh Executable file → Normal file
View File

@ -28,8 +28,6 @@ echo "---------- utilisateur: $username"
if [ ! -f "out_$username.json" ]; then if [ ! -f "out_$username.json" ]; then
bash find_user_id.sh $username bash find_user_id.sh $username
#FIXME: find_user_id.sh is not part of this repo. maybe get_user.sh?
#FIXME: also check if file is empty?
fi fi
# Vérifier si le fichier sequences_$username.txt existe # Vérifier si le fichier sequences_$username.txt existe
if [ ! -f "sequences_$username.txt" ]; then if [ ! -f "sequences_$username.txt" ]; then
@ -43,4 +41,4 @@ echo "---------- utilisateur: $username"
fi fi
done done
echo "---------- finished getting users ------------" echo "---------- finished getting users ------------"

View File

@ -9,7 +9,7 @@ def parse_args(argv =None):
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
parser.add_argument('--username', type=str, help='Username to get the sequences id of', required=True) parser.add_argument('--username', type=str, help='Username to get the sequences id of', required=True)
parser.add_argument('--dev_token', type=str, help='Your mapillary developer token') parser.add_argument('--dev_token', type=str, help='Your mapillary developer token')
parser.add_argument('--max_sequence', type=str, help='Username to get the sequences id of') parser.add_argument('--max_sequence', type=str, help='Limit the amount of retrieved sequence ids')
global args global args
args = parser.parse_args(argv) args = parser.parse_args(argv)