I\'m trying upload multiple files with flask_restful, but can\'t get the files name list in the arguments except the first file name, how can i get the files list with args?
Basically, just add
action='append'
Your code should be now: parser.add_argument('file', type=werkzeug.FileStorage, location='files',required=True, action='append')
parser.add_argument('file', type=werkzeug.FileStorage, location='files',required=True, action='append')