Form Data

A
s mentioned above, the request's entity-body is only present for POST requests. POST requests are the result of form submissions with FORM tags like this:
<form action="url" method="POST" enctype="multipart/form-data">
The name value of each form field in the form is transmitted to the server in the entity-body. The Python infrastructure breaks this information down, making it easy to manipulate.