covid-19-analysis/HttpRequestHandler.py

12 lines
275 B
Python
Raw Normal View History

2020-03-28 15:55:34 +00:00
# -*- 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')