File size: 244 Bytes
cf9ca1a
 
 
 
 
 
 
 
1f8a2b3
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import cgi
import cgitb; cgitb.enable() # Optional; for debugging only

print("Content-Type: text/html")

arguments = cgi.FieldStorage()
for i in arguments.keys():

    print(arguments[i].value)

if __name__ == '__main__':
   
    print('MAIN')