Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 1 | :mod:`io` --- Core tools for working with streams |
| 2 | ================================================= |
| 3 | |
| 4 | .. module:: io |
| 5 | :synopsis: Core tools for working with streams. |
| 6 | .. moduleauthor:: Guido van Rossum <guido@python.org> |
| 7 | .. moduleauthor:: Mike Verdone <mike.verdone@gmail.com> |
| 8 | .. moduleauthor:: Mark Russell <mark.russell@zen.co.uk> |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 9 | .. moduleauthor:: Antoine Pitrou <solipsis@pitrou.net> |
| 10 | .. moduleauthor:: Amaury Forgeot d'Arc <amauryfa@gmail.com> |
Benjamin Peterson | ef9f2bd | 2009-05-01 20:45:43 +0000 | [diff] [blame] | 11 | .. moduleauthor:: Benjamin Peterson <benjamin@python.org> |
Benjamin Peterson | 058e31e | 2009-01-16 03:54:08 +0000 | [diff] [blame] | 12 | .. sectionauthor:: Benjamin Peterson <benjamin@python.org> |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 13 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 14 | .. _io-overview: |
| 15 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 16 | Overview |
| 17 | -------- |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 18 | |
R David Murray | 9f0c940 | 2012-08-17 20:33:54 -0400 | [diff] [blame] | 19 | .. index:: |
| 20 | single: file object; io module |
| 21 | |
| 22 | The :mod:`io` module provides Python's main facilities for dealing with various |
| 23 | types of I/O. There are three main types of I/O: *text I/O*, *binary I/O* |
| 24 | and *raw I/O*. These are generic categories, and various backing stores can |
| 25 | be used for each of them. A concrete object belonging to any of these |
| 26 | categories is called a :term:`file object`. Other common terms are *stream* |
| 27 | and *file-like object*. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 28 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 29 | Independently of its category, each concrete stream object will also have |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 30 | various capabilities: it can be read-only, write-only, or read-write. It can |
| 31 | also allow arbitrary random access (seeking forwards or backwards to any |
| 32 | location), or only sequential access (for example in the case of a socket or |
| 33 | pipe). |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 34 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 35 | All streams are careful about the type of data you give to them. For example |
| 36 | giving a :class:`str` object to the ``write()`` method of a binary stream |
| 37 | will raise a ``TypeError``. So will giving a :class:`bytes` object to the |
| 38 | ``write()`` method of a text stream. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 39 | |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 40 | .. versionchanged:: 3.3 |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 41 | Operations that used to raise :exc:`IOError` now raise :exc:`OSError`, since |
| 42 | :exc:`IOError` is now an alias of :exc:`OSError`. |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 43 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 44 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 45 | Text I/O |
| 46 | ^^^^^^^^ |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 47 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 48 | Text I/O expects and produces :class:`str` objects. This means that whenever |
| 49 | the backing store is natively made of bytes (such as in the case of a file), |
| 50 | encoding and decoding of data is made transparently as well as optional |
| 51 | translation of platform-specific newline characters. |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 52 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 53 | The easiest way to create a text stream is with :meth:`open()`, optionally |
| 54 | specifying an encoding:: |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 55 | |
| 56 | f = open("myfile.txt", "r", encoding="utf-8") |
| 57 | |
| 58 | In-memory text streams are also available as :class:`StringIO` objects:: |
| 59 | |
| 60 | f = io.StringIO("some initial text data") |
| 61 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 62 | The text stream API is described in detail in the documentation of |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 63 | :class:`TextIOBase`. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 64 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 65 | |
| 66 | Binary I/O |
| 67 | ^^^^^^^^^^ |
| 68 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 69 | Binary I/O (also called *buffered I/O*) expects and produces :class:`bytes` |
| 70 | objects. No encoding, decoding, or newline translation is performed. This |
| 71 | category of streams can be used for all kinds of non-text data, and also when |
| 72 | manual control over the handling of text data is desired. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 73 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 74 | The easiest way to create a binary stream is with :meth:`open()` with ``'b'`` in |
| 75 | the mode string:: |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 76 | |
| 77 | f = open("myfile.jpg", "rb") |
| 78 | |
| 79 | In-memory binary streams are also available as :class:`BytesIO` objects:: |
| 80 | |
| 81 | f = io.BytesIO(b"some initial binary data: \x00\x01") |
| 82 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 83 | The binary stream API is described in detail in the docs of |
| 84 | :class:`BufferedIOBase`. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 85 | |
| 86 | Other library modules may provide additional ways to create text or binary |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 87 | streams. See :meth:`socket.socket.makefile` for example. |
| 88 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 89 | |
| 90 | Raw I/O |
| 91 | ^^^^^^^ |
| 92 | |
| 93 | Raw I/O (also called *unbuffered I/O*) is generally used as a low-level |
| 94 | building-block for binary and text streams; it is rarely useful to directly |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 95 | manipulate a raw stream from user code. Nevertheless, you can create a raw |
| 96 | stream by opening a file in binary mode with buffering disabled:: |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 97 | |
| 98 | f = open("myfile.jpg", "rb", buffering=0) |
| 99 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 100 | The raw stream API is described in detail in the docs of :class:`RawIOBase`. |
Benjamin Peterson | cc12e1b | 2010-02-19 00:58:13 +0000 | [diff] [blame] | 101 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 102 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 103 | High-level Module Interface |
| 104 | --------------------------- |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 105 | |
| 106 | .. data:: DEFAULT_BUFFER_SIZE |
| 107 | |
| 108 | An int containing the default buffer size used by the module's buffered I/O |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 109 | classes. :func:`open` uses the file's blksize (as obtained by |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 110 | :func:`os.stat`) if possible. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 111 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 112 | |
Benjamin Peterson | 95e392c | 2010-04-27 21:07:21 +0000 | [diff] [blame] | 113 | .. function:: open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 114 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 115 | This is an alias for the builtin :func:`open` function. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 116 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 117 | |
| 118 | .. exception:: BlockingIOError |
| 119 | |
Antoine Pitrou | f55011f | 2011-10-12 18:57:23 +0200 | [diff] [blame] | 120 | This is a compatibility alias for the builtin :exc:`BlockingIOError` |
| 121 | exception. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 122 | |
| 123 | |
| 124 | .. exception:: UnsupportedOperation |
| 125 | |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 126 | An exception inheriting :exc:`OSError` and :exc:`ValueError` that is raised |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 127 | when an unsupported operation is called on a stream. |
| 128 | |
| 129 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 130 | In-memory streams |
| 131 | ^^^^^^^^^^^^^^^^^ |
| 132 | |
| 133 | It is also possible to use a :class:`str` or :class:`bytes`-like object as a |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 134 | file for both reading and writing. For strings :class:`StringIO` can be used |
| 135 | like a file opened in text mode. :class:`BytesIO` can be used like a file |
| 136 | opened in binary mode. Both provide full read-write capabilities with random |
| 137 | access. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 138 | |
| 139 | |
| 140 | .. seealso:: |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 141 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 142 | :mod:`sys` |
| 143 | contains the standard IO streams: :data:`sys.stdin`, :data:`sys.stdout`, |
| 144 | and :data:`sys.stderr`. |
| 145 | |
| 146 | |
| 147 | Class hierarchy |
| 148 | --------------- |
| 149 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 150 | The implementation of I/O streams is organized as a hierarchy of classes. First |
| 151 | :term:`abstract base classes <abstract base class>` (ABCs), which are used to |
| 152 | specify the various categories of streams, then concrete classes providing the |
| 153 | standard stream implementations. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 154 | |
| 155 | .. note:: |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 156 | |
| 157 | The abstract base classes also provide default implementations of some |
| 158 | methods in order to help implementation of concrete stream classes. For |
| 159 | example, :class:`BufferedIOBase` provides unoptimized implementations of |
| 160 | ``readinto()`` and ``readline()``. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 161 | |
| 162 | At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. It |
| 163 | defines the basic interface to a stream. Note, however, that there is no |
| 164 | separation between reading and writing to streams; implementations are allowed |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 165 | to raise :exc:`UnsupportedOperation` if they do not support a given operation. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 166 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 167 | The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the reading |
| 168 | and writing of bytes to a stream. :class:`FileIO` subclasses :class:`RawIOBase` |
| 169 | to provide an interface to files in the machine's file system. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 170 | |
| 171 | The :class:`BufferedIOBase` ABC deals with buffering on a raw byte stream |
| 172 | (:class:`RawIOBase`). Its subclasses, :class:`BufferedWriter`, |
| 173 | :class:`BufferedReader`, and :class:`BufferedRWPair` buffer streams that are |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 174 | readable, writable, and both readable and writable. :class:`BufferedRandom` |
| 175 | provides a buffered interface to random access streams. Another |
Georg Brandl | 682d7e0 | 2010-10-06 10:26:05 +0000 | [diff] [blame] | 176 | :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of in-memory |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 177 | bytes. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 178 | |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 179 | The :class:`TextIOBase` ABC, another subclass of :class:`IOBase`, deals with |
| 180 | streams whose bytes represent text, and handles encoding and decoding to and |
| 181 | from strings. :class:`TextIOWrapper`, which extends it, is a buffered text |
| 182 | interface to a buffered raw stream (:class:`BufferedIOBase`). Finally, |
| 183 | :class:`StringIO` is an in-memory stream for text. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 184 | |
| 185 | Argument names are not part of the specification, and only the arguments of |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 186 | :func:`open` are intended to be used as keyword arguments. |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 187 | |
| 188 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 189 | I/O Base Classes |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 190 | ^^^^^^^^^^^^^^^^ |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 191 | |
| 192 | .. class:: IOBase |
| 193 | |
| 194 | The abstract base class for all I/O classes, acting on streams of bytes. |
| 195 | There is no public constructor. |
| 196 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 197 | This class provides empty abstract implementations for many methods |
| 198 | that derived classes can override selectively; the default |
| 199 | implementations represent a file that cannot be read, written or |
| 200 | seeked. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 201 | |
| 202 | Even though :class:`IOBase` does not declare :meth:`read`, :meth:`readinto`, |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 203 | or :meth:`write` because their signatures will vary, implementations and |
| 204 | clients should consider those methods part of the interface. Also, |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 205 | implementations may raise a :exc:`ValueError` (or :exc:`UnsupportedOperation`) |
| 206 | when operations they do not support are called. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 207 | |
| 208 | The basic type used for binary data read from or written to a file is |
| 209 | :class:`bytes`. :class:`bytearray`\s are accepted too, and in some cases |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 210 | (such as :class:`readinto`) required. Text I/O classes work with |
| 211 | :class:`str` data. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 212 | |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 213 | Note that calling any method (even inquiries) on a closed stream is |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 214 | undefined. Implementations may raise :exc:`ValueError` in this case. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 215 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 216 | :class:`IOBase` (and its subclasses) support the iterator protocol, meaning |
| 217 | that an :class:`IOBase` object can be iterated over yielding the lines in a |
| 218 | stream. Lines are defined slightly differently depending on whether the |
| 219 | stream is a binary stream (yielding bytes), or a text stream (yielding |
| 220 | character strings). See :meth:`~IOBase.readline` below. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 221 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 222 | :class:`IOBase` is also a context manager and therefore supports the |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 223 | :keyword:`with` statement. In this example, *file* is closed after the |
| 224 | :keyword:`with` statement's suite is finished---even if an exception occurs:: |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 225 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 226 | with open('spam.txt', 'w') as file: |
| 227 | file.write('Spam and eggs!') |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 228 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 229 | :class:`IOBase` provides these data attributes and methods: |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 230 | |
| 231 | .. method:: close() |
| 232 | |
Christian Heimes | ecc42a2 | 2008-11-05 19:30:32 +0000 | [diff] [blame] | 233 | Flush and close this stream. This method has no effect if the file is |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 234 | already closed. Once the file is closed, any operation on the file |
Georg Brandl | 8569e58 | 2010-05-19 20:57:08 +0000 | [diff] [blame] | 235 | (e.g. reading or writing) will raise a :exc:`ValueError`. |
Antoine Pitrou | f9fc08f | 2010-04-28 19:59:32 +0000 | [diff] [blame] | 236 | |
| 237 | As a convenience, it is allowed to call this method more than once; |
| 238 | only the first call, however, will have an effect. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 239 | |
| 240 | .. attribute:: closed |
| 241 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 242 | ``True`` if the stream is closed. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 243 | |
| 244 | .. method:: fileno() |
| 245 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 246 | Return the underlying file descriptor (an integer) of the stream if it |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 247 | exists. An :exc:`OSError` is raised if the IO object does not use a file |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 248 | descriptor. |
| 249 | |
| 250 | .. method:: flush() |
| 251 | |
Benjamin Peterson | b85a584 | 2008-04-13 21:39:58 +0000 | [diff] [blame] | 252 | Flush the write buffers of the stream if applicable. This does nothing |
| 253 | for read-only and non-blocking streams. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 254 | |
| 255 | .. method:: isatty() |
| 256 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 257 | Return ``True`` if the stream is interactive (i.e., connected to |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 258 | a terminal/tty device). |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 259 | |
| 260 | .. method:: readable() |
| 261 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 262 | Return ``True`` if the stream can be read from. If False, :meth:`read` |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 263 | will raise :exc:`OSError`. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 264 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 265 | .. method:: readline(limit=-1) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 266 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 267 | Read and return one line from the stream. If *limit* is specified, at |
| 268 | most *limit* bytes will be read. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 269 | |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 270 | The line terminator is always ``b'\n'`` for binary files; for text files, |
Benjamin Peterson | 6b4fa77 | 2010-08-30 13:19:53 +0000 | [diff] [blame] | 271 | the *newlines* argument to :func:`open` can be used to select the line |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 272 | terminator(s) recognized. |
| 273 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 274 | .. method:: readlines(hint=-1) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 275 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 276 | Read and return a list of lines from the stream. *hint* can be specified |
| 277 | to control the number of lines read: no more lines will be read if the |
| 278 | total size (in bytes/characters) of all lines so far exceeds *hint*. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 279 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 280 | .. method:: seek(offset, whence=SEEK_SET) |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 281 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 282 | Change the stream position to the given byte *offset*. *offset* is |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 283 | interpreted relative to the position indicated by *whence*. Values for |
| 284 | *whence* are: |
| 285 | |
Benjamin Peterson | 0e4caf4 | 2009-04-01 21:22:20 +0000 | [diff] [blame] | 286 | * :data:`SEEK_SET` or ``0`` -- start of the stream (the default); |
| 287 | *offset* should be zero or positive |
| 288 | * :data:`SEEK_CUR` or ``1`` -- current stream position; *offset* may |
| 289 | be negative |
| 290 | * :data:`SEEK_END` or ``2`` -- end of the stream; *offset* is usually |
| 291 | negative |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 292 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 293 | Return the new absolute position. |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 294 | |
Raymond Hettinger | 35a8836 | 2009-04-09 00:08:24 +0000 | [diff] [blame] | 295 | .. versionadded:: 3.1 |
Georg Brandl | 67b21b7 | 2010-08-17 15:07:14 +0000 | [diff] [blame] | 296 | The ``SEEK_*`` constants. |
Benjamin Peterson | 0e4caf4 | 2009-04-01 21:22:20 +0000 | [diff] [blame] | 297 | |
Jesus Cea | 9436361 | 2012-06-22 18:32:07 +0200 | [diff] [blame] | 298 | .. versionadded:: 3.3 |
| 299 | Some operating systems could support additional values, like |
| 300 | :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values |
| 301 | for a file could depend on it being open in text or binary mode. |
| 302 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 303 | .. method:: seekable() |
| 304 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 305 | Return ``True`` if the stream supports random access. If ``False``, |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 306 | :meth:`seek`, :meth:`tell` and :meth:`truncate` will raise :exc:`OSError`. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 307 | |
| 308 | .. method:: tell() |
| 309 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 310 | Return the current stream position. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 311 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 312 | .. method:: truncate(size=None) |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 313 | |
Antoine Pitrou | 2016dc9 | 2010-05-29 12:08:25 +0000 | [diff] [blame] | 314 | Resize the stream to the given *size* in bytes (or the current position |
| 315 | if *size* is not specified). The current stream position isn't changed. |
| 316 | This resizing can extend or reduce the current file size. In case of |
| 317 | extension, the contents of the new file area depend on the platform |
| 318 | (on most systems, additional bytes are zero-filled, on Windows they're |
| 319 | undetermined). The new file size is returned. |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 320 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 321 | .. method:: writable() |
| 322 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 323 | Return ``True`` if the stream supports writing. If ``False``, |
Antoine Pitrou | a787b65 | 2011-10-12 19:02:52 +0200 | [diff] [blame] | 324 | :meth:`write` and :meth:`truncate` will raise :exc:`OSError`. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 325 | |
| 326 | .. method:: writelines(lines) |
| 327 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 328 | Write a list of lines to the stream. Line separators are not added, so it |
| 329 | is usual for each of the lines provided to have a line separator at the |
| 330 | end. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 331 | |
| 332 | |
| 333 | .. class:: RawIOBase |
| 334 | |
| 335 | Base class for raw binary I/O. It inherits :class:`IOBase`. There is no |
| 336 | public constructor. |
| 337 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 338 | Raw binary I/O typically provides low-level access to an underlying OS |
| 339 | device or API, and does not try to encapsulate it in high-level primitives |
| 340 | (this is left to Buffered I/O and Text I/O, described later in this page). |
| 341 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 342 | In addition to the attributes and methods from :class:`IOBase`, |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 343 | :class:`RawIOBase` provides the following methods: |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 344 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 345 | .. method:: read(n=-1) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 346 | |
Antoine Pitrou | 78ddbe6 | 2009-10-01 16:24:45 +0000 | [diff] [blame] | 347 | Read up to *n* bytes from the object and return them. As a convenience, |
| 348 | if *n* is unspecified or -1, :meth:`readall` is called. Otherwise, |
| 349 | only one system call is ever made. Fewer than *n* bytes may be |
| 350 | returned if the operating system call returns fewer than *n* bytes. |
| 351 | |
| 352 | If 0 bytes are returned, and *n* was not 0, this indicates end of file. |
| 353 | If the object is in non-blocking mode and no bytes are available, |
| 354 | ``None`` is returned. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 355 | |
Benjamin Peterson | b47aace | 2008-04-09 21:38:38 +0000 | [diff] [blame] | 356 | .. method:: readall() |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 357 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 358 | Read and return all the bytes from the stream until EOF, using multiple |
| 359 | calls to the stream if necessary. |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 360 | |
| 361 | .. method:: readinto(b) |
| 362 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 363 | Read up to ``len(b)`` bytes into :class:`bytearray` *b* and return the |
| 364 | number of bytes read. If the object is in non-blocking mode and no |
Daniel Stutzbach | d01df46 | 2010-11-30 17:49:53 +0000 | [diff] [blame] | 365 | bytes are available, ``None`` is returned. |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 366 | |
| 367 | .. method:: write(b) |
| 368 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 369 | Write the given :class:`bytes` or :class:`bytearray` object, *b*, to the |
| 370 | underlying raw stream and return the number of bytes written. This can |
| 371 | be less than ``len(b)``, depending on specifics of the underlying raw |
| 372 | stream, and especially if it is in non-blocking mode. ``None`` is |
| 373 | returned if the raw stream is set not to block and no single byte could |
| 374 | be readily written to it. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 375 | |
| 376 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 377 | .. class:: BufferedIOBase |
| 378 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 379 | Base class for binary streams that support some kind of buffering. |
| 380 | It inherits :class:`IOBase`. There is no public constructor. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 381 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 382 | The main difference with :class:`RawIOBase` is that methods :meth:`read`, |
| 383 | :meth:`readinto` and :meth:`write` will try (respectively) to read as much |
| 384 | input as requested or to consume all given output, at the expense of |
| 385 | making perhaps more than one system call. |
| 386 | |
| 387 | In addition, those methods can raise :exc:`BlockingIOError` if the |
| 388 | underlying raw stream is in non-blocking mode and cannot take or give |
| 389 | enough data; unlike their :class:`RawIOBase` counterparts, they will |
| 390 | never return ``None``. |
| 391 | |
| 392 | Besides, the :meth:`read` method does not have a default |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 393 | implementation that defers to :meth:`readinto`. |
| 394 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 395 | A typical :class:`BufferedIOBase` implementation should not inherit from a |
| 396 | :class:`RawIOBase` implementation, but wrap one, like |
| 397 | :class:`BufferedWriter` and :class:`BufferedReader` do. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 398 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 399 | :class:`BufferedIOBase` provides or overrides these methods and attribute in |
| 400 | addition to those from :class:`IOBase`: |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 401 | |
Benjamin Peterson | c609b6b | 2009-06-28 17:32:20 +0000 | [diff] [blame] | 402 | .. attribute:: raw |
| 403 | |
| 404 | The underlying raw stream (a :class:`RawIOBase` instance) that |
| 405 | :class:`BufferedIOBase` deals with. This is not part of the |
| 406 | :class:`BufferedIOBase` API and may not exist on some implementations. |
| 407 | |
Benjamin Peterson | d2e0c79 | 2009-05-01 20:40:59 +0000 | [diff] [blame] | 408 | .. method:: detach() |
| 409 | |
| 410 | Separate the underlying raw stream from the buffer and return it. |
| 411 | |
| 412 | After the raw stream has been detached, the buffer is in an unusable |
| 413 | state. |
| 414 | |
| 415 | Some buffers, like :class:`BytesIO`, do not have the concept of a single |
| 416 | raw stream to return from this method. They raise |
| 417 | :exc:`UnsupportedOperation`. |
| 418 | |
Benjamin Peterson | edc3647 | 2009-05-01 20:48:14 +0000 | [diff] [blame] | 419 | .. versionadded:: 3.1 |
| 420 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 421 | .. method:: read(n=-1) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 422 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 423 | Read and return up to *n* bytes. If the argument is omitted, ``None``, or |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 424 | negative, data is read and returned until EOF is reached. An empty |
| 425 | :class:`bytes` object is returned if the stream is already at EOF. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 426 | |
| 427 | If the argument is positive, and the underlying raw stream is not |
| 428 | interactive, multiple raw reads may be issued to satisfy the byte count |
| 429 | (unless EOF is reached first). But for interactive raw streams, at most |
| 430 | one raw read will be issued, and a short result does not imply that EOF is |
| 431 | imminent. |
| 432 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 433 | A :exc:`BlockingIOError` is raised if the underlying raw stream is in |
| 434 | non blocking-mode, and has no data available at the moment. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 435 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 436 | .. method:: read1(n=-1) |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 437 | |
| 438 | Read and return up to *n* bytes, with at most one call to the underlying |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 439 | raw stream's :meth:`~RawIOBase.read` method. This can be useful if you |
| 440 | are implementing your own buffering on top of a :class:`BufferedIOBase` |
| 441 | object. |
Benjamin Peterson | 4fa88fa | 2009-03-04 00:14:51 +0000 | [diff] [blame] | 442 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 443 | .. method:: readinto(b) |
| 444 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 445 | Read up to ``len(b)`` bytes into bytearray *b* and return the number of |
| 446 | bytes read. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 447 | |
| 448 | Like :meth:`read`, multiple reads may be issued to the underlying raw |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 449 | stream, unless the latter is interactive. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 450 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 451 | A :exc:`BlockingIOError` is raised if the underlying raw stream is in |
| 452 | non blocking-mode, and has no data available at the moment. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 453 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 454 | .. method:: write(b) |
| 455 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 456 | Write the given :class:`bytes` or :class:`bytearray` object, *b* and |
| 457 | return the number of bytes written (never less than ``len(b)``, since if |
| 458 | the write fails an :exc:`OSError` will be raised). Depending on the |
| 459 | actual implementation, these bytes may be readily written to the |
| 460 | underlying stream, or held in a buffer for performance and latency |
| 461 | reasons. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 462 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 463 | When in non-blocking mode, a :exc:`BlockingIOError` is raised if the |
| 464 | data needed to be written to the raw stream but it couldn't accept |
| 465 | all the data without blocking. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 466 | |
| 467 | |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 468 | Raw File I/O |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 469 | ^^^^^^^^^^^^ |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 470 | |
Ross Lagerwall | 59142db | 2011-10-31 20:34:46 +0200 | [diff] [blame] | 471 | .. class:: FileIO(name, mode='r', closefd=True, opener=None) |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 472 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 473 | :class:`FileIO` represents an OS-level file containing bytes data. |
| 474 | It implements the :class:`RawIOBase` interface (and therefore the |
| 475 | :class:`IOBase` interface, too). |
| 476 | |
| 477 | The *name* can be one of two things: |
| 478 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 479 | * a character string or :class:`bytes` object representing the path to the |
| 480 | file which will be opened; |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 481 | * an integer representing the number of an existing OS-level file descriptor |
| 482 | to which the resulting :class:`FileIO` object will give access. |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 483 | |
Charles-François Natali | dc3044c | 2012-01-09 22:40:02 +0100 | [diff] [blame] | 484 | The *mode* can be ``'r'``, ``'w'``, ``'x'`` or ``'a'`` for reading |
Charles-François Natali | d612de1 | 2012-01-14 11:51:00 +0100 | [diff] [blame] | 485 | (default), writing, exclusive creation or appending. The file will be |
| 486 | created if it doesn't exist when opened for writing or appending; it will be |
| 487 | truncated when opened for writing. :exc:`FileExistsError` will be raised if |
| 488 | it already exists when opened for creating. Opening a file for creating |
| 489 | implies writing, so this mode behaves in a similar way to ``'w'``. Add a |
| 490 | ``'+'`` to the mode to allow simultaneous reading and writing. |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 491 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 492 | The :meth:`read` (when called with a positive argument), :meth:`readinto` |
| 493 | and :meth:`write` methods on this class will only make one system call. |
| 494 | |
Ross Lagerwall | 59142db | 2011-10-31 20:34:46 +0200 | [diff] [blame] | 495 | A custom opener can be used by passing a callable as *opener*. The underlying |
| 496 | file descriptor for the file object is then obtained by calling *opener* with |
| 497 | (*name*, *flags*). *opener* must return an open file descriptor (passing |
| 498 | :mod:`os.open` as *opener* results in functionality similar to passing |
| 499 | ``None``). |
| 500 | |
Éric Araujo | 8f423c9 | 2012-11-03 17:06:52 -0400 | [diff] [blame] | 501 | See the :func:`open` built-in function for examples on using the *opener* |
| 502 | parameter. |
| 503 | |
Ross Lagerwall | 59142db | 2011-10-31 20:34:46 +0200 | [diff] [blame] | 504 | .. versionchanged:: 3.3 |
| 505 | The *opener* parameter was added. |
Charles-François Natali | dc3044c | 2012-01-09 22:40:02 +0100 | [diff] [blame] | 506 | The ``'x'`` mode was added. |
Ross Lagerwall | 59142db | 2011-10-31 20:34:46 +0200 | [diff] [blame] | 507 | |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 508 | In addition to the attributes and methods from :class:`IOBase` and |
| 509 | :class:`RawIOBase`, :class:`FileIO` provides the following data |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 510 | attributes: |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 511 | |
| 512 | .. attribute:: mode |
| 513 | |
| 514 | The mode as given in the constructor. |
| 515 | |
| 516 | .. attribute:: name |
| 517 | |
| 518 | The file name. This is the file descriptor of the file when no name is |
| 519 | given in the constructor. |
| 520 | |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 521 | |
| 522 | Buffered Streams |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 523 | ^^^^^^^^^^^^^^^^ |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 524 | |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 525 | Buffered I/O streams provide a higher-level interface to an I/O device |
| 526 | than raw I/O does. |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 527 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 528 | .. class:: BytesIO([initial_bytes]) |
| 529 | |
| 530 | A stream implementation using an in-memory bytes buffer. It inherits |
| 531 | :class:`BufferedIOBase`. |
| 532 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 533 | The argument *initial_bytes* contains optional initial :class:`bytes` data. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 534 | |
| 535 | :class:`BytesIO` provides or overrides these methods in addition to those |
| 536 | from :class:`BufferedIOBase` and :class:`IOBase`: |
| 537 | |
Antoine Pitrou | 972ee13 | 2010-09-06 18:48:21 +0000 | [diff] [blame] | 538 | .. method:: getbuffer() |
| 539 | |
| 540 | Return a readable and writable view over the contents of the buffer |
| 541 | without copying them. Also, mutating the view will transparently |
| 542 | update the contents of the buffer:: |
| 543 | |
| 544 | >>> b = io.BytesIO(b"abcdef") |
| 545 | >>> view = b.getbuffer() |
| 546 | >>> view[2:4] = b"56" |
| 547 | >>> b.getvalue() |
| 548 | b'ab56ef' |
| 549 | |
| 550 | .. note:: |
| 551 | As long as the view exists, the :class:`BytesIO` object cannot be |
| 552 | resized. |
| 553 | |
| 554 | .. versionadded:: 3.2 |
| 555 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 556 | .. method:: getvalue() |
| 557 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 558 | Return :class:`bytes` containing the entire contents of the buffer. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 559 | |
| 560 | .. method:: read1() |
| 561 | |
Benjamin Peterson | 9efcc4b | 2008-04-14 21:30:21 +0000 | [diff] [blame] | 562 | In :class:`BytesIO`, this is the same as :meth:`read`. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 563 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 564 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 565 | .. class:: BufferedReader(raw, buffer_size=DEFAULT_BUFFER_SIZE) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 566 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 567 | A buffer providing higher-level access to a readable, sequential |
| 568 | :class:`RawIOBase` object. It inherits :class:`BufferedIOBase`. |
| 569 | When reading data from this object, a larger amount of data may be |
| 570 | requested from the underlying raw stream, and kept in an internal buffer. |
| 571 | The buffered data can then be returned directly on subsequent reads. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 572 | |
| 573 | The constructor creates a :class:`BufferedReader` for the given readable |
| 574 | *raw* stream and *buffer_size*. If *buffer_size* is omitted, |
| 575 | :data:`DEFAULT_BUFFER_SIZE` is used. |
| 576 | |
| 577 | :class:`BufferedReader` provides or overrides these methods in addition to |
| 578 | those from :class:`BufferedIOBase` and :class:`IOBase`: |
| 579 | |
| 580 | .. method:: peek([n]) |
| 581 | |
Benjamin Peterson | c43a26d | 2009-06-16 23:09:24 +0000 | [diff] [blame] | 582 | Return bytes from the stream without advancing the position. At most one |
Benjamin Peterson | 2a8b54d | 2009-06-14 14:37:23 +0000 | [diff] [blame] | 583 | single read on the raw stream is done to satisfy the call. The number of |
| 584 | bytes returned may be less or more than requested. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 585 | |
| 586 | .. method:: read([n]) |
| 587 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 588 | Read and return *n* bytes, or if *n* is not given or negative, until EOF |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 589 | or if the read call would block in non-blocking mode. |
| 590 | |
| 591 | .. method:: read1(n) |
| 592 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 593 | Read and return up to *n* bytes with only one call on the raw stream. If |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 594 | at least one byte is buffered, only buffered bytes are returned. |
| 595 | Otherwise, one raw stream read call is made. |
| 596 | |
| 597 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 598 | .. class:: BufferedWriter(raw, buffer_size=DEFAULT_BUFFER_SIZE) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 599 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 600 | A buffer providing higher-level access to a writeable, sequential |
| 601 | :class:`RawIOBase` object. It inherits :class:`BufferedIOBase`. |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 602 | When writing to this object, data is normally placed into an internal |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 603 | buffer. The buffer will be written out to the underlying :class:`RawIOBase` |
| 604 | object under various conditions, including: |
| 605 | |
| 606 | * when the buffer gets too small for all pending data; |
| 607 | * when :meth:`flush()` is called; |
| 608 | * when a :meth:`seek()` is requested (for :class:`BufferedRandom` objects); |
| 609 | * when the :class:`BufferedWriter` object is closed or destroyed. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 610 | |
| 611 | The constructor creates a :class:`BufferedWriter` for the given writeable |
| 612 | *raw* stream. If the *buffer_size* is not given, it defaults to |
Benjamin Peterson | 394ee00 | 2009-03-05 22:33:59 +0000 | [diff] [blame] | 613 | :data:`DEFAULT_BUFFER_SIZE`. |
| 614 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 615 | :class:`BufferedWriter` provides or overrides these methods in addition to |
| 616 | those from :class:`BufferedIOBase` and :class:`IOBase`: |
| 617 | |
| 618 | .. method:: flush() |
| 619 | |
| 620 | Force bytes held in the buffer into the raw stream. A |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 621 | :exc:`BlockingIOError` should be raised if the raw stream blocks. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 622 | |
| 623 | .. method:: write(b) |
| 624 | |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 625 | Write the :class:`bytes` or :class:`bytearray` object, *b* and return the |
| 626 | number of bytes written. When in non-blocking mode, a |
| 627 | :exc:`BlockingIOError` is raised if the buffer needs to be written out but |
| 628 | the raw stream blocks. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 629 | |
| 630 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 631 | .. class:: BufferedRandom(raw, buffer_size=DEFAULT_BUFFER_SIZE) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 632 | |
| 633 | A buffered interface to random access streams. It inherits |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 634 | :class:`BufferedReader` and :class:`BufferedWriter`, and further supports |
| 635 | :meth:`seek` and :meth:`tell` functionality. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 636 | |
Benjamin Peterson | 2c5f828 | 2008-04-13 00:27:46 +0000 | [diff] [blame] | 637 | The constructor creates a reader and writer for a seekable raw stream, given |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 638 | in the first argument. If the *buffer_size* is omitted it defaults to |
Benjamin Peterson | 394ee00 | 2009-03-05 22:33:59 +0000 | [diff] [blame] | 639 | :data:`DEFAULT_BUFFER_SIZE`. |
| 640 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 641 | :class:`BufferedRandom` is capable of anything :class:`BufferedReader` or |
| 642 | :class:`BufferedWriter` can do. |
| 643 | |
| 644 | |
Antoine Pitrou | 13d2895 | 2011-08-20 19:48:43 +0200 | [diff] [blame] | 645 | .. class:: BufferedRWPair(reader, writer, buffer_size=DEFAULT_BUFFER_SIZE) |
| 646 | |
| 647 | A buffered I/O object combining two unidirectional :class:`RawIOBase` |
| 648 | objects -- one readable, the other writeable -- into a single bidirectional |
| 649 | endpoint. It inherits :class:`BufferedIOBase`. |
| 650 | |
| 651 | *reader* and *writer* are :class:`RawIOBase` objects that are readable and |
| 652 | writeable respectively. If the *buffer_size* is omitted it defaults to |
| 653 | :data:`DEFAULT_BUFFER_SIZE`. |
| 654 | |
Antoine Pitrou | 13d2895 | 2011-08-20 19:48:43 +0200 | [diff] [blame] | 655 | :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods |
| 656 | except for :meth:`~BufferedIOBase.detach`, which raises |
| 657 | :exc:`UnsupportedOperation`. |
| 658 | |
| 659 | .. warning:: |
| 660 | :class:`BufferedRWPair` does not attempt to synchronize accesses to |
| 661 | its underlying raw streams. You should not pass it the same object |
| 662 | as reader and writer; use :class:`BufferedRandom` instead. |
| 663 | |
| 664 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 665 | Text I/O |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 666 | ^^^^^^^^ |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 667 | |
| 668 | .. class:: TextIOBase |
| 669 | |
| 670 | Base class for text streams. This class provides a character and line based |
| 671 | interface to stream I/O. There is no :meth:`readinto` method because |
| 672 | Python's character strings are immutable. It inherits :class:`IOBase`. |
| 673 | There is no public constructor. |
| 674 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 675 | :class:`TextIOBase` provides or overrides these data attributes and |
| 676 | methods in addition to those from :class:`IOBase`: |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 677 | |
| 678 | .. attribute:: encoding |
| 679 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 680 | The name of the encoding used to decode the stream's bytes into |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 681 | strings, and to encode strings into bytes. |
| 682 | |
Benjamin Peterson | 0926ad1 | 2009-06-06 18:02:12 +0000 | [diff] [blame] | 683 | .. attribute:: errors |
| 684 | |
| 685 | The error setting of the decoder or encoder. |
| 686 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 687 | .. attribute:: newlines |
| 688 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 689 | A string, a tuple of strings, or ``None``, indicating the newlines |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 690 | translated so far. Depending on the implementation and the initial |
| 691 | constructor flags, this may not be available. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 692 | |
Benjamin Peterson | c609b6b | 2009-06-28 17:32:20 +0000 | [diff] [blame] | 693 | .. attribute:: buffer |
| 694 | |
| 695 | The underlying binary buffer (a :class:`BufferedIOBase` instance) that |
| 696 | :class:`TextIOBase` deals with. This is not part of the |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 697 | :class:`TextIOBase` API and may not exist in some implementations. |
Benjamin Peterson | c609b6b | 2009-06-28 17:32:20 +0000 | [diff] [blame] | 698 | |
Benjamin Peterson | d2e0c79 | 2009-05-01 20:40:59 +0000 | [diff] [blame] | 699 | .. method:: detach() |
| 700 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 701 | Separate the underlying binary buffer from the :class:`TextIOBase` and |
| 702 | return it. |
Benjamin Peterson | d2e0c79 | 2009-05-01 20:40:59 +0000 | [diff] [blame] | 703 | |
| 704 | After the underlying buffer has been detached, the :class:`TextIOBase` is |
| 705 | in an unusable state. |
| 706 | |
| 707 | Some :class:`TextIOBase` implementations, like :class:`StringIO`, may not |
| 708 | have the concept of an underlying buffer and calling this method will |
| 709 | raise :exc:`UnsupportedOperation`. |
| 710 | |
Benjamin Peterson | edc3647 | 2009-05-01 20:48:14 +0000 | [diff] [blame] | 711 | .. versionadded:: 3.1 |
| 712 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 713 | .. method:: read(n) |
| 714 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 715 | Read and return at most *n* characters from the stream as a single |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 716 | :class:`str`. If *n* is negative or ``None``, reads until EOF. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 717 | |
Antoine Pitrou | 707bd4e | 2012-07-25 22:38:33 +0200 | [diff] [blame] | 718 | .. method:: readline(limit=-1) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 719 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 720 | Read until newline or EOF and return a single ``str``. If the stream is |
| 721 | already at EOF, an empty string is returned. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 722 | |
Antoine Pitrou | 707bd4e | 2012-07-25 22:38:33 +0200 | [diff] [blame] | 723 | If *limit* is specified, at most *limit* characters will be read. |
| 724 | |
Antoine Pitrou | f49d152 | 2012-01-21 20:20:49 +0100 | [diff] [blame] | 725 | .. method:: seek(offset, whence=SEEK_SET) |
| 726 | |
| 727 | Change the stream position to the given *offset*. Behaviour depends |
| 728 | on the *whence* parameter: |
| 729 | |
| 730 | * :data:`SEEK_SET` or ``0``: seek from the start of the stream |
| 731 | (the default); *offset* must either be a number returned by |
| 732 | :meth:`TextIOBase.tell`, or zero. Any other *offset* value |
| 733 | produces undefined behaviour. |
| 734 | * :data:`SEEK_CUR` or ``1``: "seek" to the current position; |
| 735 | *offset* must be zero, which is a no-operation (all other values |
| 736 | are unsupported). |
| 737 | * :data:`SEEK_END` or ``2``: seek to the end of the stream; |
| 738 | *offset* must be zero (all other values are unsupported). |
| 739 | |
| 740 | Return the new absolute position as an opaque number. |
| 741 | |
| 742 | .. versionadded:: 3.1 |
| 743 | The ``SEEK_*`` constants. |
| 744 | |
| 745 | .. method:: tell() |
| 746 | |
| 747 | Return the current stream position as an opaque number. The number |
| 748 | does not usually represent a number of bytes in the underlying |
| 749 | binary storage. |
| 750 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 751 | .. method:: write(s) |
| 752 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 753 | Write the string *s* to the stream and return the number of characters |
| 754 | written. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 755 | |
| 756 | |
Antoine Pitrou | 664091b | 2011-07-23 22:00:03 +0200 | [diff] [blame] | 757 | .. class:: TextIOWrapper(buffer, encoding=None, errors=None, newline=None, \ |
| 758 | line_buffering=False, write_through=False) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 759 | |
Antoine Pitrou | 497a767 | 2009-09-17 17:18:01 +0000 | [diff] [blame] | 760 | A buffered text stream over a :class:`BufferedIOBase` binary stream. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 761 | It inherits :class:`TextIOBase`. |
| 762 | |
| 763 | *encoding* gives the name of the encoding that the stream will be decoded or |
Andrew Svetlov | 4805fa8 | 2012-08-13 22:11:14 +0300 | [diff] [blame] | 764 | encoded with. It defaults to |
| 765 | :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 766 | |
Benjamin Peterson | b85a584 | 2008-04-13 21:39:58 +0000 | [diff] [blame] | 767 | *errors* is an optional string that specifies how encoding and decoding |
| 768 | errors are to be handled. Pass ``'strict'`` to raise a :exc:`ValueError` |
| 769 | exception if there is an encoding error (the default of ``None`` has the same |
| 770 | effect), or pass ``'ignore'`` to ignore errors. (Note that ignoring encoding |
| 771 | errors can lead to data loss.) ``'replace'`` causes a replacement marker |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 772 | (such as ``'?'``) to be inserted where there is malformed data. When |
| 773 | writing, ``'xmlcharrefreplace'`` (replace with the appropriate XML character |
| 774 | reference) or ``'backslashreplace'`` (replace with backslashed escape |
| 775 | sequences) can be used. Any other error handling name that has been |
| 776 | registered with :func:`codecs.register_error` is also valid. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 777 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 778 | .. index:: |
| 779 | single: universal newlines; io.TextIOWrapper class |
| 780 | |
Antoine Pitrou | 0c1c0d4 | 2012-08-04 00:55:38 +0200 | [diff] [blame] | 781 | *newline* controls how line endings are handled. It can be ``None``, |
| 782 | ``''``, ``'\n'``, ``'\r'``, and ``'\r\n'``. It works as follows: |
| 783 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 784 | * When reading input from the stream, if *newline* is ``None``, |
R David Murray | ee0a945 | 2012-08-15 11:05:36 -0400 | [diff] [blame] | 785 | :term:`universal newlines` mode is enabled. Lines in the input can end in |
| 786 | ``'\n'``, ``'\r'``, or ``'\r\n'``, and these are translated into ``'\n'`` |
| 787 | before being returned to the caller. If it is ``''``, universal newlines |
| 788 | mode is enabled, but line endings are returned to the caller untranslated. |
| 789 | If it has any of the other legal values, input lines are only terminated |
| 790 | by the given string, and the line ending is returned to the caller |
| 791 | untranslated. |
Antoine Pitrou | 0c1c0d4 | 2012-08-04 00:55:38 +0200 | [diff] [blame] | 792 | |
Georg Brandl | 296d1be | 2012-08-14 09:39:07 +0200 | [diff] [blame] | 793 | * When writing output to the stream, if *newline* is ``None``, any ``'\n'`` |
| 794 | characters written are translated to the system default line separator, |
| 795 | :data:`os.linesep`. If *newline* is ``''`` or ``'\n'``, no translation |
| 796 | takes place. If *newline* is any of the other legal values, any ``'\n'`` |
| 797 | characters written are translated to the given string. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 798 | |
| 799 | If *line_buffering* is ``True``, :meth:`flush` is implied when a call to |
| 800 | write contains a newline character. |
| 801 | |
Antoine Pitrou | 664091b | 2011-07-23 22:00:03 +0200 | [diff] [blame] | 802 | If *write_through* is ``True``, calls to :meth:`write` are guaranteed |
| 803 | not to be buffered: any data written on the :class:`TextIOWrapper` |
| 804 | object is immediately handled to its underlying binary *buffer*. |
| 805 | |
| 806 | .. versionchanged:: 3.3 |
| 807 | The *write_through* argument has been added. |
| 808 | |
Victor Stinner | f86a5e8 | 2012-06-05 13:43:22 +0200 | [diff] [blame] | 809 | .. versionchanged:: 3.3 |
| 810 | The default *encoding* is now ``locale.getpreferredencoding(False)`` |
| 811 | instead of ``locale.getpreferredencoding()``. Don't change temporary the |
| 812 | locale encoding using :func:`locale.setlocale`, use the current locale |
| 813 | encoding instead of the user preferred encoding. |
| 814 | |
Benjamin Peterson | 0926ad1 | 2009-06-06 18:02:12 +0000 | [diff] [blame] | 815 | :class:`TextIOWrapper` provides one attribute in addition to those of |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 816 | :class:`TextIOBase` and its parents: |
| 817 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 818 | .. attribute:: line_buffering |
| 819 | |
| 820 | Whether line buffering is enabled. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 821 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 822 | |
Georg Brandl | 3dd3388 | 2009-06-01 17:35:27 +0000 | [diff] [blame] | 823 | .. class:: StringIO(initial_value='', newline=None) |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 824 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 825 | An in-memory stream for text I/O. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 826 | |
Benjamin Peterson | aa1c8d8 | 2009-03-09 02:02:23 +0000 | [diff] [blame] | 827 | The initial value of the buffer (an empty string by default) can be set by |
| 828 | providing *initial_value*. The *newline* argument works like that of |
| 829 | :class:`TextIOWrapper`. The default is to do no newline translation. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 830 | |
Mark Summerfield | e6d5f30 | 2008-04-21 10:29:45 +0000 | [diff] [blame] | 831 | :class:`StringIO` provides this method in addition to those from |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 832 | :class:`TextIOBase` and its parents: |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 833 | |
| 834 | .. method:: getvalue() |
| 835 | |
Georg Brandl | 2932d93 | 2008-05-30 06:27:09 +0000 | [diff] [blame] | 836 | Return a ``str`` containing the entire contents of the buffer at any |
| 837 | time before the :class:`StringIO` object's :meth:`close` method is |
| 838 | called. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 839 | |
Georg Brandl | 2932d93 | 2008-05-30 06:27:09 +0000 | [diff] [blame] | 840 | Example usage:: |
| 841 | |
| 842 | import io |
| 843 | |
| 844 | output = io.StringIO() |
| 845 | output.write('First line.\n') |
| 846 | print('Second line.', file=output) |
| 847 | |
| 848 | # Retrieve file contents -- this will be |
| 849 | # 'First line.\nSecond line.\n' |
| 850 | contents = output.getvalue() |
| 851 | |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 852 | # Close object and discard memory buffer -- |
Georg Brandl | 2932d93 | 2008-05-30 06:27:09 +0000 | [diff] [blame] | 853 | # .getvalue() will now raise an exception. |
| 854 | output.close() |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 855 | |
Antoine Pitrou | b530e14 | 2010-08-30 12:41:00 +0000 | [diff] [blame] | 856 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 857 | .. index:: |
| 858 | single: universal newlines; io.IncrementalNewlineDecoder class |
| 859 | |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 860 | .. class:: IncrementalNewlineDecoder |
| 861 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 862 | A helper codec that decodes newlines for :term:`universal newlines` mode. |
| 863 | It inherits :class:`codecs.IncrementalDecoder`. |
Georg Brandl | 014197c | 2008-04-09 18:40:51 +0000 | [diff] [blame] | 864 | |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 865 | |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 866 | Performance |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 867 | ----------- |
| 868 | |
| 869 | This section discusses the performance of the provided concrete I/O |
| 870 | implementations. |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 871 | |
| 872 | Binary I/O |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 873 | ^^^^^^^^^^ |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 874 | |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 875 | By reading and writing only large chunks of data even when the user asks for a |
| 876 | single byte, buffered I/O hides any inefficiency in calling and executing the |
| 877 | operating system's unbuffered I/O routines. The gain depends on the OS and the |
| 878 | kind of I/O which is performed. For example, on some modern OSes such as Linux, |
| 879 | unbuffered disk I/O can be as fast as buffered I/O. The bottom line, however, |
| 880 | is that buffered I/O offers predictable performance regardless of the platform |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 881 | and the backing device. Therefore, it is almost always preferable to use |
| 882 | buffered I/O rather than unbuffered I/O for binary data. |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 883 | |
| 884 | Text I/O |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 885 | ^^^^^^^^ |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 886 | |
| 887 | Text I/O over a binary storage (such as a file) is significantly slower than |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 888 | binary I/O over the same storage, because it requires conversions between |
| 889 | unicode and binary data using a character codec. This can become noticeable |
| 890 | handling huge amounts of text data like large log files. Also, |
| 891 | :meth:`TextIOWrapper.tell` and :meth:`TextIOWrapper.seek` are both quite slow |
| 892 | due to the reconstruction algorithm used. |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 893 | |
| 894 | :class:`StringIO`, however, is a native in-memory unicode container and will |
| 895 | exhibit similar speed to :class:`BytesIO`. |
| 896 | |
| 897 | Multi-threading |
| 898 | ^^^^^^^^^^^^^^^ |
| 899 | |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 900 | :class:`FileIO` objects are thread-safe to the extent that the operating system |
| 901 | calls (such as ``read(2)`` under Unix) they wrap are thread-safe too. |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 902 | |
| 903 | Binary buffered objects (instances of :class:`BufferedReader`, |
| 904 | :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) |
| 905 | protect their internal structures using a lock; it is therefore safe to call |
| 906 | them from multiple threads at once. |
| 907 | |
| 908 | :class:`TextIOWrapper` objects are not thread-safe. |
| 909 | |
| 910 | Reentrancy |
| 911 | ^^^^^^^^^^ |
| 912 | |
| 913 | Binary buffered objects (instances of :class:`BufferedReader`, |
| 914 | :class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`) |
| 915 | are not reentrant. While reentrant calls will not happen in normal situations, |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 916 | they can arise from doing I/O in a :mod:`signal` handler. If a thread tries to |
Eli Bendersky | f877a7c | 2012-07-14 21:22:25 +0300 | [diff] [blame] | 917 | re-enter a buffered object which it is already accessing, a :exc:`RuntimeError` |
| 918 | is raised. Note this doesn't prohibit a different thread from entering the |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 919 | buffered object. |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 920 | |
Benjamin Peterson | edf5132 | 2011-02-24 03:03:46 +0000 | [diff] [blame] | 921 | The above implicitly extends to text files, since the :func:`open()` function |
| 922 | will wrap a buffered object inside a :class:`TextIOWrapper`. This includes |
| 923 | standard streams and therefore affects the built-in function :func:`print()` as |
| 924 | well. |
Antoine Pitrou | bed81c8 | 2010-12-03 19:14:17 +0000 | [diff] [blame] | 925 | |