Forms
The FieldStorage class of the cgi module has all that is needed to handle submited forms.
import cgi form = cgi.FieldStorage() # instantiate only once!
It is transparent to the programmer if the data was submited by GET or by POST. The interface is exactly the same.