http_server.py 250 B

123456789101112131415161718
  1. from abc import abstractmethod
  2. from http.server import BaseHTTPRequestHandler, HTTPServer
  3. class MyHandler(BaseHTTPRequestHandler):
  4. @abstractmethod
  5. def do_GET(self):
  6. pass
  7. @abstractmethod
  8. def do_POST(self):
  9. pass