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.
- You can use this example
Use the server provided here. Make a HTML form with some input fields and set its action such that it is submitted to your Python HTTP server (using GET).
- See urllib.parse for extracting input variables from the URL
Extend the previous exercise such that the form is submitted using POST.