Rev python example

This commit is contained in:
Chuck Lantz
2019-04-19 13:47:02 -07:00
parent a48afbb8de
commit 0715db599a
5 changed files with 62 additions and 15 deletions

15
server.py Normal file
View File

@@ -0,0 +1,15 @@
#-----------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in the project root for license information.
#-----------------------------------------------------------------------------------------
import socketserver
import http.server
RequestHandler = http.server.SimpleHTTPRequestHandler
PORT = 5000
with socketserver.TCPServer(("", PORT), RequestHandler) as httpd:
print("Server runnong on port", PORT)
httpd.serve_forever()