Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def main(argv=None):
parser = _get_parser()
args = parser.parse_args(argv)
if args.outdir:
data = read(args.infile)
outdir = Path(args.outdir)
if not outdir.is_dir():
outdir.mkdir(parents=True)
with open(outdir / "index.html", "wt") as out:
out.write(render(data, args.infile))
this_dir = Path(__file__).resolve().parent
static_dir = outdir / "static"
if static_dir.is_dir():
shutil.rmtree(static_dir)
shutil.copytree(this_dir / "web" / "static", static_dir)
if args.browser:
threading.Thread(
target=lambda: webbrowser.open_new_tab(outdir / "index.html")
).start()
else:
start_server(args.infile, args.browser, args.port)