Launch the example Python HTTP server and test it by making a request to it both from a browser and using curl.
Extend the HTTP server to be able to handle POST requests. Test it by making a post request using curl.
Make a HTML form with some input fields and set its action such that it is submitted to your Python HTTP server (using GET). Your server should output all input variables that are included in the request.
- Use urllib.parse to extract input variables from the URL
Extend the previous exercise such that the form is submitted using POST.