Traductor / test.py
meinvirgos's picture
Update test.py
1f8a2b3 verified
raw
history blame contribute delete
244 Bytes
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')