Python標準庫附帶了兩種風格的直接支持。
--video <video> <rating>
可能是爲用戶
--videos
/--ratings
如果你已經在調用腳本分離的數據可能是有用的更自然。
如果你喜歡,你可以支持;你選擇的主要是意見問題,通過你的腳本如何最有可能被使用來告知。
import argparse
p = argparse.ArgumentParser()
p.add_argument('--video', nargs=2, action='append')
p.add_argument('--videos', nargs='+')
p.add_argument('--ratings', nargs='+')
args = p.parse_args()
for vid, rating in args.video:
print("Video: {}, rating: {}".format(vid, rating))
# It is up to the caller to make sure the same number of videos and ratings
# are specified with --videos and --ratings
for vid, rating in zip(args.videos, args.ratings):
print("Video: {}, rating: {}".format(vid, rating))
然後,你可以簡單地使用
vidrate --video cat_video.mp4 6 video1.mp4 9
或
vidrate --videos cat_video.mp4 video1.mp4 --ratings 6 9
甚至組合
vidrate --video cat_video.mp4 6 video1.mp4 9 --videos foo.mp4 bar.mp4 baz.mp4 --ratings 1 2 3
與外殼陣列組合,你可以使用它像這樣:
cat_vid=(cat_video.mp4 6)
vid_one=(video1.mp4 9)
other_videos=(foo.mp4 bar.mp4 baz.mp4)
other_ratings=(1 2 3)
vidrate --video "${cat_vid[@]}" --video "${vid_one[@]}" --videos "${other_videos[@]}" --ratings "${other_ratings[@]}}"
你想如何組織?在'bash'中有一個數組,即'array [cat_video.mp4] - > 6'?像這樣? – Inian
對不起,我說可能會讓我感到困惑,但我只是想說清哪個視頻是屬於哪個級別的。@Inian – h3y4w