- Implement
parse_options_header
function in to get the header value, and the options. - Send
File
andField
asnext_part()
inMultipartParser
. - Make sure
Content-Disposition
is present in each the part, or raise an error. - Limit the size of the part, and the size of the file.
- Implement
_charset_
. - Error on multiple
Content-Disposition
headers. - Add
tracing
to the parser.
I want to implement a MultipartBuilder
to build the multipart/form-data
request.