initial commit

This commit is contained in:
2025-12-10 13:38:11 +11:00
commit 53852868aa
17 changed files with 370571 additions and 0 deletions

12
ppgen.cgi Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
import os
import runpy
# Directory this CGI script lives in
here = os.path.dirname(__file__)
# Path to the real script
script = os.path.join(here, "ppgen.py")
# Execute ppgen.py as if it were the main script
runpy.run_path(script, run_name="__main__")