import cgi import cgitb; cgitb.enable() write = cgi.sys.stdout.write write('Content-Type: text/html\n\n') form = cgi.FieldStorage() module = form.getfirst('m') write('
Python %s module attributes and their doc strings | ' % module)
for attr in dir(mod):
try:
write('''
|
---|---|
%s | %s |