HTTP web server replies with the required responses
-
I chose to use HTTPS protocol for this project
-
I'm using self-signed certificate of course
-
In the Handlers class, we need to use 'distributor' and 'req_counter' as instance var instead of static var, that way we can use as many instances as we like
-
The error handling support is minimal
-
Using BaseRequest to define requests is an overkill underI the current request set, but it can be useful if we have many requests
-
The Handlers class determines the behaviour of each request received
-
We can add as many request responses in the Server.py file