covid-19-analysis/HttpRequestHandler.py
2020-03-28 16:55:34 +01:00

12 lines
275 B
Python

# -*- coding: utf-8 -*-
"""
Project: Analyse worldwide COVID-19 Data and provide graphs etc.
@author Patrick Müller
"""
import socketserver
from http.server import BaseHTTPRequestHandler
class HttpRequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
print('hello')