You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@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:
@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:
list
as a value of a multipartdict
:Example:
dict
tolist
oftuple
s:Example:
The text was updated successfully, but these errors were encountered: