8 lines
316 B
Python
8 lines
316 B
Python
|
from http.server import test, SimpleHTTPRequestHandler as RH
|
||
|
from functools import partial
|
||
|
RH.extensions_map = {k: v+';charset=UTF-8' for k,
|
||
|
v in RH.extensions_map.items()}
|
||
|
RH.extensions_map['.html'] = 'text/html; charset=utf-8'
|
||
|
test(HandlerClass=partial(RH,
|
||
|
directory="build"), port=8000)
|