added compression

This commit is contained in:
Luke Ogburn
2021-03-17 11:58:25 -04:00
parent 582fa36cd7
commit a533698227
5 changed files with 33 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import http.server
import socketserver
PORT = 63655
PORT = 63654
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd: