Spaces:
Build error
Build error
| 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') |