I am making an arg parser for a program in python and wanted to know what's the the typical format for multiple value args.
For example say I have I am trying to make a command to associate a video with a rating. I want to allow users to include multiple videos in one command. There is a 1:1 relationship for video to rating, so for every video their is one rating.
Should I format it so it's like this:
Associations:
cat_video.mp4 --> 6
video1.mp4 --> 9
vidrate --video cat_video.mp4 video1.mp4 --rating 6 9
or combine the path and int seperated by a colon like this
vidrate --video cat_video.mp4:6 video1.mp4:9
I would rather use what the typical format is so any other options are appreciated.
Thanks in advance
bash?, i.e.array[cat_video.mp4] -> 6? something like this?