Added first EVI 2018 files.

This commit is contained in:
2018-11-26 22:47:22 -04:00
parent 2b5fb28780
commit 64a907c835
21 changed files with 8159 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from http.server import HTTPServer, SimpleHTTPRequestHandler
def run(server_class = HTTPServer, handler_class = SimpleHTTPRequestHandler):
server_address = ('127.0.0.1', 8000)
httpd = server_class(server_address, handler_class)
httpd.serve_forever()
run()