@pylover Currently, multipart is a dictionary and does not support having several multipart data with the same name.
To support this, I think we have 2 options:
- Use
list as a value of a multipart dict:
Example:
multipart={'inputFiles':[filelike1, filelike2]}
- Change type of multipart from
dict to list of tuples:
Example:
multipart=[('inputFiles', filelike1), ('inputFiles', filelike2)]