-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathweb.py
41 lines (34 loc) · 1.14 KB
/
web.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import http.server
import socketserver
import argparse
import sys
parser = argparse.ArgumentParser(
description='Fetch and process OSM data into LTS')
parser.add_argument("-plot", type=str,
help="Local filepath of html file")
parser.add_argument("-port", type=int,
help="Port to serve plot at")
args = parser.parse_args(sys.argv[1:])
if args.plot:
PLOT = args.plot
else:
PLOT = 'map/local_data.html'
if args.port:
PORT = args.port
else:
PORT = 8000
class Handler(http.server.SimpleHTTPRequestHandler):
def translate_path(self, path):
if self.path == "/":
print(f'{PLOT=}')
return PLOT
if self.path.startswith("/plots"):
print(f'{path[1:]=}')
return path[1:] # strip the prefix slash so it can find the plots directory
else:
return http.server.SimpleHTTPRequestHandler.translate_path(self, path)
def __init__(self, *args, **kwargs):
super().__init__(*args, directory="/", **kwargs)
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print("serving at port", PORT)
httpd.serve_forever()