jetforce/examples/cgi/debug.cgi

11 lines
237 B
Plaintext
Raw Normal View History

2019-08-27 16:38:38 +02:00
#!/usr/local/bin/python3.7
2019-08-27 05:41:10 +02:00
"""
This is a demo CGI script that prints a bunch of debug information about
the request as an HTML document. Place it in the cgi-bin/ directory of your
server.
"""
import cgi
2019-08-27 16:38:38 +02:00
print("20 text/html")
2019-08-27 05:41:10 +02:00
cgi.test()