diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-03 23:25:52 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-03 23:25:52 +0300 |
commit | c0068e035ca825579e8d41f60d3864eeb6df0c88 (patch) | |
tree | 5fd91401c25214e4ab9d916482c9f567c00c39a1 /server.py | |
parent | merge {reboot,poweroff}.sh into get.py (diff) | |
download | linux-status-c0068e035ca825579e8d41f60d3864eeb6df0c88.tar.gz linux-status-c0068e035ca825579e8d41f60d3864eeb6df0c88.zip |
no more CGI
The server.py script now launches a web server and handles all the
requests internally, without delegating anything to external scripts.
Diffstat (limited to '')
-rwxr-xr-x | server.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,10 +7,10 @@ import http.server -from get import Request +from app import Request -class RequestHandler(http.server.CGIHTTPRequestHandler): +class RequestHandler(http.server.SimpleHTTPRequestHandler): def do_GET(self): try: request = Request.from_http_path(self.path) |