# quopri - pydoc - phpman

Help on module quopri:

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

## MODULE REFERENCE
    <https://docs.python.org/3.10/library/quopri.html>

    The following documentation is automatically generated from the Python
    source files.  It may be incomplete, incorrect or include features that
    are considered implementation detail and may vary between Python
    implementations.  When in doubt, consult the module reference at the
    location listed above.

## FUNCTIONS
### decode
        Read 'input', apply quoted-printable decoding, and write to 'output'.
        'input' and 'output' are binary file objects.
        If 'header' is true, decode underscore as space (per RFC 1522).

### decodestring

### encode
        Read 'input', apply quoted-printable encoding, and write to 'output'.

        'input' and 'output' are binary file objects. 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

## DATA
    __all__ = ['encode', 'decode', 'encodestring', 'decodestring']

## FILE
    /usr/lib/python3.10/quopri.py


