BaseHTTPServer module

Peter Hansen peter at engcorp.com
Thu Dec 1 18:10:24 EST 2005


amfr wrote:
> I looked at the doumentation and is says rfile is:
> "Contains an input stream, positioned at the start of the optional
> input data."
> How do i get the input out of it?

As with any "input stream" (file-like object) in Python, you call file 
methods like .read() or maybe .readline() and others.

-Peter




More information about the Python-list mailing list