quopri
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/quopri.py
Module Docs

Conversions to/from quoted-printable transport encoding as per RFC 1521.

 
Functions
       
decode(input, output, header=0)
Read 'input', apply quoted-printable decoding, and write to 'output'.
'input' and 'output' are files with readline() and write() methods.
If 'header' is true, decode underscore as space (per RFC 1522).
decodestring(s, header=0)
encode(input, output, quotetabs, header=0)
Read 'input', apply quoted-printable encoding, and write to 'output'.
 
'input' and 'output' are files with readline() and write() methods.
The 'quotetabs' flag indicates whether embedded tabs and spaces should be
quoted.  Note that line-ending tabs and spaces are always encoded, as per
RFC 1521.
The 'header' flag indicates whether we are encoding spaces as _ as per
RFC 1522.
encodestring(s, quotetabs=0, header=0)

 
Data
        __all__ = ['encode', 'decode', 'encodestring', 'decodestring']