7 lines
102 B
Python
Executable file
7 lines
102 B
Python
Executable file
from mod_python import apache
|
|
|
|
def handler(req):
|
|
req.write("Hello World!")
|
|
return apache.OK
|
|
|
|
|