@@ -0,0 +1,9 @@
import http.server
import socketserver
PORT = 63655
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print("Serving at port", PORT)
httpd.serve_forever()
The note is not visible to the blocked user.