blob: 0bc8021e1bdfc7445aaf4a5ac662ef57f90e7e63 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`uu` --- Encode and decode uuencode files
2==============================================
3
4.. module:: uu
5 :synopsis: Encode and decode files in uuencode format.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Lance Ellinghouse
8
Raymond Hettinger10480942011-01-10 03:26:08 +00009**Source code:** :source:`Lib/uu.py`
Georg Brandl116aa622007-08-15 14:28:22 +000010
Raymond Hettinger4f707fd2011-01-10 19:54:11 +000011--------------
12
Georg Brandl116aa622007-08-15 14:28:22 +000013This module encodes and decodes files in uuencode format, allowing arbitrary
14binary data to be transferred over ASCII-only connections. Wherever a file
15argument is expected, the methods accept a file-like object. For backwards
16compatibility, a string containing a pathname is also accepted, and the
17corresponding file will be opened for reading and writing; the pathname ``'-'``
18is understood to mean the standard input or output. However, this interface is
19deprecated; it's better for the caller to open the file itself, and be sure
20that, when required, the mode is ``'rb'`` or ``'wb'`` on Windows.
21
22.. index::
23 single: Jansen, Jack
24 single: Ellinghouse, Lance
25
26This code was contributed by Lance Ellinghouse, and modified by Jack Jansen.
27
28The :mod:`uu` module defines the following functions:
29
30
Xiang Zhang13f1f422017-05-03 11:16:21 +080031.. function:: encode(in_file, out_file, name=None, mode=None, *, backtick=False)
Georg Brandl116aa622007-08-15 14:28:22 +000032
Georg Brandlf4a41232008-05-26 17:55:52 +000033 Uuencode file *in_file* into file *out_file*. The uuencoded file will have
34 the header specifying *name* and *mode* as the defaults for the results of
35 decoding the file. The default defaults are taken from *in_file*, or ``'-'``
Xiang Zhang13f1f422017-05-03 11:16:21 +080036 and ``0o666`` respectively. If *backtick* is true, zeros are represented by
37 ``'`'`` instead of spaces.
38
39 .. versionchanged:: 3.7
40 Added the *backtick* parameter.
Georg Brandl116aa622007-08-15 14:28:22 +000041
42
Georg Brandl7f01a132009-09-16 15:58:14 +000043.. function:: decode(in_file, out_file=None, mode=None, quiet=False)
Georg Brandl116aa622007-08-15 14:28:22 +000044
45 This call decodes uuencoded file *in_file* placing the result on file
46 *out_file*. If *out_file* is a pathname, *mode* is used to set the permission
47 bits if the file must be created. Defaults for *out_file* and *mode* are taken
48 from the uuencode header. However, if the file specified in the header already
49 exists, a :exc:`uu.Error` is raised.
50
51 :func:`decode` may print a warning to standard error if the input was produced
52 by an incorrect uuencoder and Python could recover from that error. Setting
53 *quiet* to a true value silences this warning.
54
55
56.. exception:: Error()
57
58 Subclass of :exc:`Exception`, this can be raised by :func:`uu.decode` under
59 various situations, such as described above, but also including a badly
60 formatted header, or truncated input file.
61
62
63.. seealso::
64
65 Module :mod:`binascii`
66 Support module containing ASCII-to-binary and binary-to-ASCII conversions.