#!/usr/bin/env -S uv run python import cgi, cgitb import sys, os import html cgitb.enable() form = cgi.FieldStorage() if 'spreadsheet' in form: message = """

Matching:

Go Back

""" else: message = """

Error

No file field found in the form.

Go Back

""" response = f""" Carousel - Stable Matching {message} """ print(response)