multipart 0.17.0

A backend-agnostic extension for HTTP libraries that provides support for POST multipart/form-data requests on both client and server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="UTF-8">
    <title>Multipart-Async Form Test</title>
</head>
<body>
    <form method="post" enctype="multipart/form-data">
        <!-- <input type = text name = "text_field" />
        <input type = "file" name = "file" /> -->
        <input type = "submit" />
    </form>
</body>
</html>