blob: f0987da9b6a4cbb5ea60fc5e3852d81ef9975ef1 [file] [log] [blame]
Georg Brandl014197c2008-04-09 18:40:51 +00001:mod:`io` --- Core tools for working with streams
2=================================================
3
4.. module:: io
5 :synopsis: Core tools for working with streams.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl014197c2008-04-09 18:40:51 +00007.. moduleauthor:: Guido van Rossum <guido@python.org>
8.. moduleauthor:: Mike Verdone <mike.verdone@gmail.com>
9.. moduleauthor:: Mark Russell <mark.russell@zen.co.uk>
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +000010.. moduleauthor:: Antoine Pitrou <solipsis@pitrou.net>
11.. moduleauthor:: Amaury Forgeot d'Arc <amauryfa@gmail.com>
Benjamin Petersonef9f2bd2009-05-01 20:45:43 +000012.. moduleauthor:: Benjamin Peterson <benjamin@python.org>
Benjamin Peterson058e31e2009-01-16 03:54:08 +000013.. sectionauthor:: Benjamin Peterson <benjamin@python.org>
Georg Brandl014197c2008-04-09 18:40:51 +000014
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040015**Source code:** :source:`Lib/io.py`
16
17--------------
18
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000019.. _io-overview:
20
Antoine Pitroub530e142010-08-30 12:41:00 +000021Overview
22--------
Georg Brandl014197c2008-04-09 18:40:51 +000023
R David Murray9f0c9402012-08-17 20:33:54 -040024.. index::
25 single: file object; io module
26
27The :mod:`io` module provides Python's main facilities for dealing with various
28types of I/O. There are three main types of I/O: *text I/O*, *binary I/O*
29and *raw I/O*. These are generic categories, and various backing stores can
30be used for each of them. A concrete object belonging to any of these
31categories is called a :term:`file object`. Other common terms are *stream*
32and *file-like object*.
Georg Brandl014197c2008-04-09 18:40:51 +000033
Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)cd449802018-11-12 09:36:18 +053034Independent of its category, each concrete stream object will also have
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000035various capabilities: it can be read-only, write-only, or read-write. It can
36also allow arbitrary random access (seeking forwards or backwards to any
37location), or only sequential access (for example in the case of a socket or
38pipe).
Georg Brandl014197c2008-04-09 18:40:51 +000039
Antoine Pitroub530e142010-08-30 12:41:00 +000040All streams are careful about the type of data you give to them. For example
41giving a :class:`str` object to the ``write()`` method of a binary stream
Stéphane Wirtele483f022018-10-26 12:52:11 +020042will raise a :exc:`TypeError`. So will giving a :class:`bytes` object to the
Antoine Pitroub530e142010-08-30 12:41:00 +000043``write()`` method of a text stream.
Georg Brandl014197c2008-04-09 18:40:51 +000044
Antoine Pitroua787b652011-10-12 19:02:52 +020045.. versionchanged:: 3.3
Eli Benderskyf877a7c2012-07-14 21:22:25 +030046 Operations that used to raise :exc:`IOError` now raise :exc:`OSError`, since
47 :exc:`IOError` is now an alias of :exc:`OSError`.
Antoine Pitroua787b652011-10-12 19:02:52 +020048
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000049
Antoine Pitroub530e142010-08-30 12:41:00 +000050Text I/O
51^^^^^^^^
Georg Brandl014197c2008-04-09 18:40:51 +000052
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000053Text I/O expects and produces :class:`str` objects. This means that whenever
54the backing store is natively made of bytes (such as in the case of a file),
55encoding and decoding of data is made transparently as well as optional
56translation of platform-specific newline characters.
Benjamin Peterson2c5f8282008-04-13 00:27:46 +000057
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000058The easiest way to create a text stream is with :meth:`open()`, optionally
59specifying an encoding::
Antoine Pitroub530e142010-08-30 12:41:00 +000060
61 f = open("myfile.txt", "r", encoding="utf-8")
62
63In-memory text streams are also available as :class:`StringIO` objects::
64
65 f = io.StringIO("some initial text data")
66
Eli Benderskyf877a7c2012-07-14 21:22:25 +030067The text stream API is described in detail in the documentation of
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000068:class:`TextIOBase`.
Antoine Pitroub530e142010-08-30 12:41:00 +000069
Antoine Pitroub530e142010-08-30 12:41:00 +000070
71Binary I/O
72^^^^^^^^^^
73
Martin Panter6bb91f32016-05-28 00:41:57 +000074Binary I/O (also called *buffered I/O*) expects
75:term:`bytes-like objects <bytes-like object>` and produces :class:`bytes`
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000076objects. No encoding, decoding, or newline translation is performed. This
77category of streams can be used for all kinds of non-text data, and also when
78manual control over the handling of text data is desired.
Antoine Pitroub530e142010-08-30 12:41:00 +000079
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000080The easiest way to create a binary stream is with :meth:`open()` with ``'b'`` in
81the mode string::
Antoine Pitroub530e142010-08-30 12:41:00 +000082
83 f = open("myfile.jpg", "rb")
84
85In-memory binary streams are also available as :class:`BytesIO` objects::
86
87 f = io.BytesIO(b"some initial binary data: \x00\x01")
88
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000089The binary stream API is described in detail in the docs of
90:class:`BufferedIOBase`.
Antoine Pitroub530e142010-08-30 12:41:00 +000091
92Other library modules may provide additional ways to create text or binary
Benjamin Peterson6b4fa772010-08-30 13:19:53 +000093streams. See :meth:`socket.socket.makefile` for example.
94
Antoine Pitroub530e142010-08-30 12:41:00 +000095
96Raw I/O
97^^^^^^^
98
99Raw I/O (also called *unbuffered I/O*) is generally used as a low-level
100building-block for binary and text streams; it is rarely useful to directly
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000101manipulate a raw stream from user code. Nevertheless, you can create a raw
102stream by opening a file in binary mode with buffering disabled::
Antoine Pitroub530e142010-08-30 12:41:00 +0000103
104 f = open("myfile.jpg", "rb", buffering=0)
105
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000106The raw stream API is described in detail in the docs of :class:`RawIOBase`.
Benjamin Petersoncc12e1b2010-02-19 00:58:13 +0000107
Georg Brandl014197c2008-04-09 18:40:51 +0000108
Antoine Pitroub530e142010-08-30 12:41:00 +0000109High-level Module Interface
110---------------------------
Georg Brandl014197c2008-04-09 18:40:51 +0000111
112.. data:: DEFAULT_BUFFER_SIZE
113
114 An int containing the default buffer size used by the module's buffered I/O
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000115 classes. :func:`open` uses the file's blksize (as obtained by
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000116 :func:`os.stat`) if possible.
Georg Brandl014197c2008-04-09 18:40:51 +0000117
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000118
Andrew Svetlova60de4f2013-02-17 16:55:58 +0200119.. function:: open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
Georg Brandl014197c2008-04-09 18:40:51 +0000120
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000121 This is an alias for the builtin :func:`open` function.
Georg Brandl014197c2008-04-09 18:40:51 +0000122
Steve Dower44f91c32019-06-27 10:47:59 -0700123 .. audit-event:: open path,mode,flags io.open
Steve Dowerb82e17e2019-05-23 08:45:22 -0700124
Steve Dower60419a72019-06-24 08:42:54 -0700125 This function raises an :ref:`auditing event <auditing>` ``open`` with
Steve Dowerb82e17e2019-05-23 08:45:22 -0700126 arguments ``path``, ``mode`` and ``flags``. The ``mode`` and ``flags``
127 arguments may have been modified or inferred from the original call.
128
129
130.. function:: open_code(path)
131
132 Opens the provided file with mode ``'rb'``. This function should be used
133 when the intent is to treat the contents as executable code.
134
135 ``path`` should be an absolute path.
136
137 The behavior of this function may be overridden by an earlier call to the
138 :c:func:`PyFile_SetOpenCodeHook`, however, it should always be considered
139 interchangeable with ``open(path, 'rb')``. Overriding the behavior is
140 intended for additional validation or preprocessing of the file.
141
142 .. versionadded:: 3.8
143
Georg Brandl014197c2008-04-09 18:40:51 +0000144
145.. exception:: BlockingIOError
146
Antoine Pitrouf55011f2011-10-12 18:57:23 +0200147 This is a compatibility alias for the builtin :exc:`BlockingIOError`
148 exception.
Georg Brandl014197c2008-04-09 18:40:51 +0000149
150
151.. exception:: UnsupportedOperation
152
Antoine Pitroua787b652011-10-12 19:02:52 +0200153 An exception inheriting :exc:`OSError` and :exc:`ValueError` that is raised
Georg Brandl014197c2008-04-09 18:40:51 +0000154 when an unsupported operation is called on a stream.
155
156
Antoine Pitroub530e142010-08-30 12:41:00 +0000157In-memory streams
158^^^^^^^^^^^^^^^^^
159
Serhiy Storchakae5ea1ab2016-05-18 13:54:54 +0300160It is also possible to use a :class:`str` or :term:`bytes-like object` as a
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000161file for both reading and writing. For strings :class:`StringIO` can be used
162like a file opened in text mode. :class:`BytesIO` can be used like a file
163opened in binary mode. Both provide full read-write capabilities with random
164access.
Antoine Pitroub530e142010-08-30 12:41:00 +0000165
166
167.. seealso::
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000168
Antoine Pitroub530e142010-08-30 12:41:00 +0000169 :mod:`sys`
170 contains the standard IO streams: :data:`sys.stdin`, :data:`sys.stdout`,
171 and :data:`sys.stderr`.
172
173
174Class hierarchy
175---------------
176
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000177The implementation of I/O streams is organized as a hierarchy of classes. First
178:term:`abstract base classes <abstract base class>` (ABCs), which are used to
179specify the various categories of streams, then concrete classes providing the
180standard stream implementations.
Antoine Pitroub530e142010-08-30 12:41:00 +0000181
182 .. note::
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000183
184 The abstract base classes also provide default implementations of some
185 methods in order to help implementation of concrete stream classes. For
186 example, :class:`BufferedIOBase` provides unoptimized implementations of
Serhiy Storchakabfdcd432013-10-13 23:09:14 +0300187 :meth:`~IOBase.readinto` and :meth:`~IOBase.readline`.
Antoine Pitroub530e142010-08-30 12:41:00 +0000188
189At the top of the I/O hierarchy is the abstract base class :class:`IOBase`. It
190defines the basic interface to a stream. Note, however, that there is no
191separation between reading and writing to streams; implementations are allowed
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000192to raise :exc:`UnsupportedOperation` if they do not support a given operation.
Antoine Pitroub530e142010-08-30 12:41:00 +0000193
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000194The :class:`RawIOBase` ABC extends :class:`IOBase`. It deals with the reading
195and writing of bytes to a stream. :class:`FileIO` subclasses :class:`RawIOBase`
196to provide an interface to files in the machine's file system.
Antoine Pitroub530e142010-08-30 12:41:00 +0000197
Géry Ogam3b58a702019-09-11 16:55:13 +0200198The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
199buffering on a raw binary stream (:class:`RawIOBase`). Its subclasses,
200:class:`BufferedWriter`, :class:`BufferedReader`, and :class:`BufferedRWPair`
201buffer raw binary streams that are readable, writable, and both readable and writable,
202respectively. :class:`BufferedRandom` provides a buffered interface to seekable streams.
203Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
204in-memory bytes.
Antoine Pitroub530e142010-08-30 12:41:00 +0000205
Géry Ogam3b58a702019-09-11 16:55:13 +0200206The :class:`TextIOBase` ABC extends :class:`IOBase`. It deals with
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000207streams whose bytes represent text, and handles encoding and decoding to and
Géry Ogam3b58a702019-09-11 16:55:13 +0200208from strings. :class:`TextIOWrapper`, which extends :class:`TextIOBase`, is a buffered text
209interface to a buffered raw stream (:class:`BufferedIOBase`). Finally,
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000210:class:`StringIO` is an in-memory stream for text.
Antoine Pitroub530e142010-08-30 12:41:00 +0000211
212Argument names are not part of the specification, and only the arguments of
Benjamin Peterson6b4fa772010-08-30 13:19:53 +0000213:func:`open` are intended to be used as keyword arguments.
Antoine Pitroub530e142010-08-30 12:41:00 +0000214
Andrew Svetloved636a82012-12-06 12:20:56 +0200215The following table summarizes the ABCs provided by the :mod:`io` module:
216
Georg Brandl44ea77b2013-03-28 13:28:44 +0100217.. tabularcolumns:: |l|l|L|L|
218
Andrew Svetloved636a82012-12-06 12:20:56 +0200219========================= ================== ======================== ==================================================
220ABC Inherits Stub Methods Mixin Methods and Properties
221========================= ================== ======================== ==================================================
222:class:`IOBase` ``fileno``, ``seek``, ``close``, ``closed``, ``__enter__``,
223 and ``truncate`` ``__exit__``, ``flush``, ``isatty``, ``__iter__``,
224 ``__next__``, ``readable``, ``readline``,
225 ``readlines``, ``seekable``, ``tell``,
226 ``writable``, and ``writelines``
227:class:`RawIOBase` :class:`IOBase` ``readinto`` and Inherited :class:`IOBase` methods, ``read``,
228 ``write`` and ``readall``
Sanyam Khurana1b74f9b2017-12-11 19:12:09 +0530229:class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` methods, ``readinto``,
230 ``read1``, and ``write`` and ``readinto1``
Andrew Svetloved636a82012-12-06 12:20:56 +0200231:class:`TextIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` methods, ``encoding``,
232 ``readline``, and ``errors``, and ``newlines``
233 ``write``
234========================= ================== ======================== ==================================================
235
Antoine Pitroub530e142010-08-30 12:41:00 +0000236
Georg Brandl014197c2008-04-09 18:40:51 +0000237I/O Base Classes
Antoine Pitroub530e142010-08-30 12:41:00 +0000238^^^^^^^^^^^^^^^^
Georg Brandl014197c2008-04-09 18:40:51 +0000239
240.. class:: IOBase
241
242 The abstract base class for all I/O classes, acting on streams of bytes.
243 There is no public constructor.
244
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000245 This class provides empty abstract implementations for many methods
246 that derived classes can override selectively; the default
247 implementations represent a file that cannot be read, written or
248 seeked.
Georg Brandl014197c2008-04-09 18:40:51 +0000249
Steve Palmer7b97ab32019-04-09 05:35:27 +0100250 Even though :class:`IOBase` does not declare :meth:`read`
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000251 or :meth:`write` because their signatures will vary, implementations and
252 clients should consider those methods part of the interface. Also,
Antoine Pitroua787b652011-10-12 19:02:52 +0200253 implementations may raise a :exc:`ValueError` (or :exc:`UnsupportedOperation`)
254 when operations they do not support are called.
Georg Brandl014197c2008-04-09 18:40:51 +0000255
256 The basic type used for binary data read from or written to a file is
Martin Panter6bb91f32016-05-28 00:41:57 +0000257 :class:`bytes`. Other :term:`bytes-like objects <bytes-like object>` are
Steve Palmer7b97ab32019-04-09 05:35:27 +0100258 accepted as method arguments too. Text I/O classes work with :class:`str` data.
Georg Brandl014197c2008-04-09 18:40:51 +0000259
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000260 Note that calling any method (even inquiries) on a closed stream is
Antoine Pitroua787b652011-10-12 19:02:52 +0200261 undefined. Implementations may raise :exc:`ValueError` in this case.
Georg Brandl014197c2008-04-09 18:40:51 +0000262
Éric Araujo3f7c0e42012-12-08 22:53:43 -0500263 :class:`IOBase` (and its subclasses) supports the iterator protocol, meaning
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300264 that an :class:`IOBase` object can be iterated over yielding the lines in a
265 stream. Lines are defined slightly differently depending on whether the
266 stream is a binary stream (yielding bytes), or a text stream (yielding
267 character strings). See :meth:`~IOBase.readline` below.
Georg Brandl014197c2008-04-09 18:40:51 +0000268
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300269 :class:`IOBase` is also a context manager and therefore supports the
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000270 :keyword:`with` statement. In this example, *file* is closed after the
Serhiy Storchaka2b57c432018-12-19 08:09:46 +0200271 :keyword:`!with` statement's suite is finished---even if an exception occurs::
Georg Brandl014197c2008-04-09 18:40:51 +0000272
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000273 with open('spam.txt', 'w') as file:
274 file.write('Spam and eggs!')
Georg Brandl014197c2008-04-09 18:40:51 +0000275
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000276 :class:`IOBase` provides these data attributes and methods:
Georg Brandl014197c2008-04-09 18:40:51 +0000277
278 .. method:: close()
279
Christian Heimesecc42a22008-11-05 19:30:32 +0000280 Flush and close this stream. This method has no effect if the file is
Georg Brandl48310cd2009-01-03 21:18:54 +0000281 already closed. Once the file is closed, any operation on the file
Georg Brandl8569e582010-05-19 20:57:08 +0000282 (e.g. reading or writing) will raise a :exc:`ValueError`.
Antoine Pitrouf9fc08f2010-04-28 19:59:32 +0000283
284 As a convenience, it is allowed to call this method more than once;
285 only the first call, however, will have an effect.
Georg Brandl014197c2008-04-09 18:40:51 +0000286
287 .. attribute:: closed
288
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300289 ``True`` if the stream is closed.
Georg Brandl014197c2008-04-09 18:40:51 +0000290
291 .. method:: fileno()
292
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000293 Return the underlying file descriptor (an integer) of the stream if it
Antoine Pitroua787b652011-10-12 19:02:52 +0200294 exists. An :exc:`OSError` is raised if the IO object does not use a file
Georg Brandl014197c2008-04-09 18:40:51 +0000295 descriptor.
296
297 .. method:: flush()
298
Benjamin Petersonb85a5842008-04-13 21:39:58 +0000299 Flush the write buffers of the stream if applicable. This does nothing
300 for read-only and non-blocking streams.
Georg Brandl014197c2008-04-09 18:40:51 +0000301
302 .. method:: isatty()
303
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000304 Return ``True`` if the stream is interactive (i.e., connected to
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000305 a terminal/tty device).
Georg Brandl014197c2008-04-09 18:40:51 +0000306
307 .. method:: readable()
308
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200309 Return ``True`` if the stream can be read from. If ``False``, :meth:`read`
Antoine Pitroua787b652011-10-12 19:02:52 +0200310 will raise :exc:`OSError`.
Georg Brandl014197c2008-04-09 18:40:51 +0000311
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300312 .. method:: readline(size=-1)
Georg Brandl014197c2008-04-09 18:40:51 +0000313
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300314 Read and return one line from the stream. If *size* is specified, at
315 most *size* bytes will be read.
Georg Brandl014197c2008-04-09 18:40:51 +0000316
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000317 The line terminator is always ``b'\n'`` for binary files; for text files,
Zachary Ware0069eac2014-07-18 09:11:48 -0500318 the *newline* argument to :func:`open` can be used to select the line
Georg Brandl014197c2008-04-09 18:40:51 +0000319 terminator(s) recognized.
320
Georg Brandl3dd33882009-06-01 17:35:27 +0000321 .. method:: readlines(hint=-1)
Georg Brandl014197c2008-04-09 18:40:51 +0000322
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000323 Read and return a list of lines from the stream. *hint* can be specified
324 to control the number of lines read: no more lines will be read if the
325 total size (in bytes/characters) of all lines so far exceeds *hint*.
Georg Brandl014197c2008-04-09 18:40:51 +0000326
Ezio Melottied3cd7e2013-04-15 19:08:31 +0300327 Note that it's already possible to iterate on file objects using ``for
328 line in file: ...`` without calling ``file.readlines()``.
329
Benjamin Peterson2a3d4d92019-07-10 19:43:04 -0700330 .. method:: seek(offset, whence=SEEK_SET)
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000331
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000332 Change the stream position to the given byte *offset*. *offset* is
Martin Panterdb4220e2015-09-11 03:58:30 +0000333 interpreted relative to the position indicated by *whence*. The default
334 value for *whence* is :data:`SEEK_SET`. Values for *whence* are:
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000335
Benjamin Peterson0e4caf42009-04-01 21:22:20 +0000336 * :data:`SEEK_SET` or ``0`` -- start of the stream (the default);
337 *offset* should be zero or positive
338 * :data:`SEEK_CUR` or ``1`` -- current stream position; *offset* may
339 be negative
340 * :data:`SEEK_END` or ``2`` -- end of the stream; *offset* is usually
341 negative
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000342
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000343 Return the new absolute position.
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000344
Raymond Hettinger35a88362009-04-09 00:08:24 +0000345 .. versionadded:: 3.1
Georg Brandl67b21b72010-08-17 15:07:14 +0000346 The ``SEEK_*`` constants.
Benjamin Peterson0e4caf42009-04-01 21:22:20 +0000347
Jesus Cea94363612012-06-22 18:32:07 +0200348 .. versionadded:: 3.3
349 Some operating systems could support additional values, like
350 :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values
351 for a file could depend on it being open in text or binary mode.
352
Georg Brandl014197c2008-04-09 18:40:51 +0000353 .. method:: seekable()
354
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000355 Return ``True`` if the stream supports random access. If ``False``,
Antoine Pitroua787b652011-10-12 19:02:52 +0200356 :meth:`seek`, :meth:`tell` and :meth:`truncate` will raise :exc:`OSError`.
Georg Brandl014197c2008-04-09 18:40:51 +0000357
358 .. method:: tell()
359
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000360 Return the current stream position.
Georg Brandl014197c2008-04-09 18:40:51 +0000361
Georg Brandl3dd33882009-06-01 17:35:27 +0000362 .. method:: truncate(size=None)
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000363
Antoine Pitrou2016dc92010-05-29 12:08:25 +0000364 Resize the stream to the given *size* in bytes (or the current position
365 if *size* is not specified). The current stream position isn't changed.
366 This resizing can extend or reduce the current file size. In case of
367 extension, the contents of the new file area depend on the platform
Steve Dowerfe0a41a2015-03-20 19:50:46 -0700368 (on most systems, additional bytes are zero-filled). The new file size
369 is returned.
370
Emmanuel Arias522630a2019-02-15 16:02:38 -0300371 .. versionchanged:: 3.5
372 Windows will now zero-fill files when extending.
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000373
Georg Brandl014197c2008-04-09 18:40:51 +0000374 .. method:: writable()
375
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000376 Return ``True`` if the stream supports writing. If ``False``,
Antoine Pitroua787b652011-10-12 19:02:52 +0200377 :meth:`write` and :meth:`truncate` will raise :exc:`OSError`.
Georg Brandl014197c2008-04-09 18:40:51 +0000378
379 .. method:: writelines(lines)
380
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000381 Write a list of lines to the stream. Line separators are not added, so it
382 is usual for each of the lines provided to have a line separator at the
383 end.
Georg Brandl014197c2008-04-09 18:40:51 +0000384
Benjamin Petersonef8abfc2014-06-14 18:51:34 -0700385 .. method:: __del__()
386
387 Prepare for object destruction. :class:`IOBase` provides a default
388 implementation of this method that calls the instance's
389 :meth:`~IOBase.close` method.
390
Georg Brandl014197c2008-04-09 18:40:51 +0000391
392.. class:: RawIOBase
393
Géry Ogam3b58a702019-09-11 16:55:13 +0200394 Base class for raw binary streams. It inherits :class:`IOBase`. There is no
Georg Brandl014197c2008-04-09 18:40:51 +0000395 public constructor.
396
Géry Ogam3b58a702019-09-11 16:55:13 +0200397 Raw binary streams typically provide low-level access to an underlying OS
398 device or API, and do not try to encapsulate it in high-level primitives
399 (this functionality is done at a higher-level in buffered binary streams and text streams, described later
400 in this page).
Antoine Pitrou497a7672009-09-17 17:18:01 +0000401
Géry Ogam3b58a702019-09-11 16:55:13 +0200402 :class:`RawIOBase` provides these methods in addition to those from
403 :class:`IOBase`:
Georg Brandl014197c2008-04-09 18:40:51 +0000404
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300405 .. method:: read(size=-1)
Georg Brandl014197c2008-04-09 18:40:51 +0000406
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300407 Read up to *size* bytes from the object and return them. As a convenience,
Sanyam Khurana1b74f9b2017-12-11 19:12:09 +0530408 if *size* is unspecified or -1, all bytes until EOF are returned.
409 Otherwise, only one system call is ever made. Fewer than *size* bytes may
410 be returned if the operating system call returns fewer than *size* bytes.
Antoine Pitrou78ddbe62009-10-01 16:24:45 +0000411
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300412 If 0 bytes are returned, and *size* was not 0, this indicates end of file.
Antoine Pitrou78ddbe62009-10-01 16:24:45 +0000413 If the object is in non-blocking mode and no bytes are available,
414 ``None`` is returned.
Georg Brandl014197c2008-04-09 18:40:51 +0000415
Sanyam Khurana1b74f9b2017-12-11 19:12:09 +0530416 The default implementation defers to :meth:`readall` and
417 :meth:`readinto`.
418
Benjamin Petersonb47aace2008-04-09 21:38:38 +0000419 .. method:: readall()
Georg Brandl014197c2008-04-09 18:40:51 +0000420
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000421 Read and return all the bytes from the stream until EOF, using multiple
422 calls to the stream if necessary.
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000423
424 .. method:: readinto(b)
425
Martin Panter6bb91f32016-05-28 00:41:57 +0000426 Read bytes into a pre-allocated, writable
427 :term:`bytes-like object` *b*, and return the
Steve Palmer7b97ab32019-04-09 05:35:27 +0100428 number of bytes read. For example, *b* might be a :class:`bytearray`.
429 If the object is in non-blocking mode and no bytes
Benjamin Peterson2a1a4902014-06-22 14:19:07 -0700430 are available, ``None`` is returned.
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000431
432 .. method:: write(b)
433
Martin Panter6bb91f32016-05-28 00:41:57 +0000434 Write the given :term:`bytes-like object`, *b*, to the
435 underlying raw stream, and return the number of
436 bytes written. This can be less than the length of *b* in
437 bytes, depending on specifics of the underlying raw
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300438 stream, and especially if it is in non-blocking mode. ``None`` is
439 returned if the raw stream is set not to block and no single byte could
Martin Panter6bb91f32016-05-28 00:41:57 +0000440 be readily written to it. The caller may release or mutate *b* after
441 this method returns, so the implementation should only access *b*
442 during the method call.
Georg Brandl014197c2008-04-09 18:40:51 +0000443
444
Georg Brandl014197c2008-04-09 18:40:51 +0000445.. class:: BufferedIOBase
446
Antoine Pitrou497a7672009-09-17 17:18:01 +0000447 Base class for binary streams that support some kind of buffering.
448 It inherits :class:`IOBase`. There is no public constructor.
Georg Brandl014197c2008-04-09 18:40:51 +0000449
Antoine Pitrou497a7672009-09-17 17:18:01 +0000450 The main difference with :class:`RawIOBase` is that methods :meth:`read`,
451 :meth:`readinto` and :meth:`write` will try (respectively) to read as much
452 input as requested or to consume all given output, at the expense of
453 making perhaps more than one system call.
454
455 In addition, those methods can raise :exc:`BlockingIOError` if the
456 underlying raw stream is in non-blocking mode and cannot take or give
457 enough data; unlike their :class:`RawIOBase` counterparts, they will
458 never return ``None``.
459
460 Besides, the :meth:`read` method does not have a default
Georg Brandl014197c2008-04-09 18:40:51 +0000461 implementation that defers to :meth:`readinto`.
462
Antoine Pitrou497a7672009-09-17 17:18:01 +0000463 A typical :class:`BufferedIOBase` implementation should not inherit from a
464 :class:`RawIOBase` implementation, but wrap one, like
465 :class:`BufferedWriter` and :class:`BufferedReader` do.
Georg Brandl014197c2008-04-09 18:40:51 +0000466
Géry Ogam3b58a702019-09-11 16:55:13 +0200467 :class:`BufferedIOBase` provides or overrides these data attributes and
468 methods in addition to those from :class:`IOBase`:
Georg Brandl014197c2008-04-09 18:40:51 +0000469
Benjamin Petersonc609b6b2009-06-28 17:32:20 +0000470 .. attribute:: raw
471
472 The underlying raw stream (a :class:`RawIOBase` instance) that
473 :class:`BufferedIOBase` deals with. This is not part of the
474 :class:`BufferedIOBase` API and may not exist on some implementations.
475
Benjamin Petersond2e0c792009-05-01 20:40:59 +0000476 .. method:: detach()
477
478 Separate the underlying raw stream from the buffer and return it.
479
480 After the raw stream has been detached, the buffer is in an unusable
481 state.
482
483 Some buffers, like :class:`BytesIO`, do not have the concept of a single
484 raw stream to return from this method. They raise
485 :exc:`UnsupportedOperation`.
486
Benjamin Petersonedc36472009-05-01 20:48:14 +0000487 .. versionadded:: 3.1
488
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300489 .. method:: read(size=-1)
Georg Brandl014197c2008-04-09 18:40:51 +0000490
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300491 Read and return up to *size* bytes. If the argument is omitted, ``None``,
492 or negative, data is read and returned until EOF is reached. An empty
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300493 :class:`bytes` object is returned if the stream is already at EOF.
Georg Brandl014197c2008-04-09 18:40:51 +0000494
495 If the argument is positive, and the underlying raw stream is not
496 interactive, multiple raw reads may be issued to satisfy the byte count
497 (unless EOF is reached first). But for interactive raw streams, at most
498 one raw read will be issued, and a short result does not imply that EOF is
499 imminent.
500
Antoine Pitrou497a7672009-09-17 17:18:01 +0000501 A :exc:`BlockingIOError` is raised if the underlying raw stream is in
502 non blocking-mode, and has no data available at the moment.
Georg Brandl014197c2008-04-09 18:40:51 +0000503
Martin Panterccb2c0e2016-10-20 23:48:14 +0000504 .. method:: read1([size])
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000505
Benjamin Petersona96fea02014-06-22 14:17:44 -0700506 Read and return up to *size* bytes, with at most one call to the
507 underlying raw stream's :meth:`~RawIOBase.read` (or
Benjamin Peterson2a1a4902014-06-22 14:19:07 -0700508 :meth:`~RawIOBase.readinto`) method. This can be useful if you are
509 implementing your own buffering on top of a :class:`BufferedIOBase`
510 object.
Benjamin Peterson4fa88fa2009-03-04 00:14:51 +0000511
Martin Panter4e946792016-10-21 23:00:10 +0000512 If *size* is ``-1`` (the default), an arbitrary number of bytes are
Martin Panterccb2c0e2016-10-20 23:48:14 +0000513 returned (more than zero unless EOF is reached).
514
Georg Brandl014197c2008-04-09 18:40:51 +0000515 .. method:: readinto(b)
516
Martin Panter6bb91f32016-05-28 00:41:57 +0000517 Read bytes into a pre-allocated, writable
518 :term:`bytes-like object` *b* and return the number of bytes read.
Steve Palmer7b97ab32019-04-09 05:35:27 +0100519 For example, *b* might be a :class:`bytearray`.
Georg Brandl014197c2008-04-09 18:40:51 +0000520
521 Like :meth:`read`, multiple reads may be issued to the underlying raw
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300522 stream, unless the latter is interactive.
Georg Brandl014197c2008-04-09 18:40:51 +0000523
Benjamin Peterson2a1a4902014-06-22 14:19:07 -0700524 A :exc:`BlockingIOError` is raised if the underlying raw stream is in non
525 blocking-mode, and has no data available at the moment.
Georg Brandl014197c2008-04-09 18:40:51 +0000526
Benjamin Petersona96fea02014-06-22 14:17:44 -0700527 .. method:: readinto1(b)
528
Martin Panter6bb91f32016-05-28 00:41:57 +0000529 Read bytes into a pre-allocated, writable
530 :term:`bytes-like object` *b*, using at most one call to
Benjamin Peterson2a1a4902014-06-22 14:19:07 -0700531 the underlying raw stream's :meth:`~RawIOBase.read` (or
532 :meth:`~RawIOBase.readinto`) method. Return the number of bytes read.
Benjamin Petersona96fea02014-06-22 14:17:44 -0700533
Benjamin Peterson2a1a4902014-06-22 14:19:07 -0700534 A :exc:`BlockingIOError` is raised if the underlying raw stream is in non
535 blocking-mode, and has no data available at the moment.
Benjamin Petersona96fea02014-06-22 14:17:44 -0700536
537 .. versionadded:: 3.5
538
Georg Brandl014197c2008-04-09 18:40:51 +0000539 .. method:: write(b)
540
Martin Panter6bb91f32016-05-28 00:41:57 +0000541 Write the given :term:`bytes-like object`, *b*, and return the number
542 of bytes written (always equal to the length of *b* in bytes, since if
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300543 the write fails an :exc:`OSError` will be raised). Depending on the
544 actual implementation, these bytes may be readily written to the
545 underlying stream, or held in a buffer for performance and latency
546 reasons.
Georg Brandl014197c2008-04-09 18:40:51 +0000547
Antoine Pitrou497a7672009-09-17 17:18:01 +0000548 When in non-blocking mode, a :exc:`BlockingIOError` is raised if the
549 data needed to be written to the raw stream but it couldn't accept
550 all the data without blocking.
Georg Brandl014197c2008-04-09 18:40:51 +0000551
Martin Panter6bb91f32016-05-28 00:41:57 +0000552 The caller may release or mutate *b* after this method returns,
553 so the implementation should only access *b* during the method call.
554
Georg Brandl014197c2008-04-09 18:40:51 +0000555
Benjamin Petersonaa069002009-01-23 03:26:36 +0000556Raw File I/O
Antoine Pitroub530e142010-08-30 12:41:00 +0000557^^^^^^^^^^^^
Benjamin Petersonaa069002009-01-23 03:26:36 +0000558
Ross Lagerwall59142db2011-10-31 20:34:46 +0200559.. class:: FileIO(name, mode='r', closefd=True, opener=None)
Benjamin Petersonaa069002009-01-23 03:26:36 +0000560
Géry Ogam3b58a702019-09-11 16:55:13 +0200561 A raw binary stream representing an OS-level file containing bytes data. It
562 inherits :class:`RawIOBase`.
Antoine Pitrou497a7672009-09-17 17:18:01 +0000563
564 The *name* can be one of two things:
565
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300566 * a character string or :class:`bytes` object representing the path to the
Serhiy Storchaka4adf01c2016-10-19 18:30:05 +0300567 file which will be opened. In this case closefd must be ``True`` (the default)
Robert Collins933430a2014-10-18 13:32:43 +1300568 otherwise an error will be raised.
Antoine Pitrou497a7672009-09-17 17:18:01 +0000569 * an integer representing the number of an existing OS-level file descriptor
Robert Collins933430a2014-10-18 13:32:43 +1300570 to which the resulting :class:`FileIO` object will give access. When the
571 FileIO object is closed this fd will be closed as well, unless *closefd*
572 is set to ``False``.
Benjamin Petersonaa069002009-01-23 03:26:36 +0000573
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100574 The *mode* can be ``'r'``, ``'w'``, ``'x'`` or ``'a'`` for reading
Charles-François Natalid612de12012-01-14 11:51:00 +0100575 (default), writing, exclusive creation or appending. The file will be
576 created if it doesn't exist when opened for writing or appending; it will be
577 truncated when opened for writing. :exc:`FileExistsError` will be raised if
578 it already exists when opened for creating. Opening a file for creating
579 implies writing, so this mode behaves in a similar way to ``'w'``. Add a
580 ``'+'`` to the mode to allow simultaneous reading and writing.
Benjamin Petersonaa069002009-01-23 03:26:36 +0000581
Antoine Pitrou497a7672009-09-17 17:18:01 +0000582 The :meth:`read` (when called with a positive argument), :meth:`readinto`
583 and :meth:`write` methods on this class will only make one system call.
584
Ross Lagerwall59142db2011-10-31 20:34:46 +0200585 A custom opener can be used by passing a callable as *opener*. The underlying
586 file descriptor for the file object is then obtained by calling *opener* with
587 (*name*, *flags*). *opener* must return an open file descriptor (passing
588 :mod:`os.open` as *opener* results in functionality similar to passing
589 ``None``).
590
Victor Stinnerdaf45552013-08-28 00:53:59 +0200591 The newly created file is :ref:`non-inheritable <fd_inheritance>`.
592
Éric Araujo8f423c92012-11-03 17:06:52 -0400593 See the :func:`open` built-in function for examples on using the *opener*
594 parameter.
595
Ross Lagerwall59142db2011-10-31 20:34:46 +0200596 .. versionchanged:: 3.3
597 The *opener* parameter was added.
Charles-François Natalidc3044c2012-01-09 22:40:02 +0100598 The ``'x'`` mode was added.
Ross Lagerwall59142db2011-10-31 20:34:46 +0200599
Victor Stinnerdaf45552013-08-28 00:53:59 +0200600 .. versionchanged:: 3.4
601 The file is now non-inheritable.
602
Géry Ogam3b58a702019-09-11 16:55:13 +0200603 :class:`FileIO` provides these data attributes in addition to those from
604 :class:`RawIOBase` and :class:`IOBase`:
Benjamin Petersonaa069002009-01-23 03:26:36 +0000605
606 .. attribute:: mode
607
608 The mode as given in the constructor.
609
610 .. attribute:: name
611
612 The file name. This is the file descriptor of the file when no name is
613 given in the constructor.
614
Benjamin Petersonaa069002009-01-23 03:26:36 +0000615
616Buffered Streams
Antoine Pitroub530e142010-08-30 12:41:00 +0000617^^^^^^^^^^^^^^^^
Benjamin Petersonaa069002009-01-23 03:26:36 +0000618
Antoine Pitroubed81c82010-12-03 19:14:17 +0000619Buffered I/O streams provide a higher-level interface to an I/O device
620than raw I/O does.
Antoine Pitrou497a7672009-09-17 17:18:01 +0000621
Georg Brandl014197c2008-04-09 18:40:51 +0000622.. class:: BytesIO([initial_bytes])
623
Géry Ogam3b58a702019-09-11 16:55:13 +0200624 A binary stream using an in-memory bytes buffer. It inherits
Serhiy Storchakac057c382015-02-03 02:00:18 +0200625 :class:`BufferedIOBase`. The buffer is discarded when the
626 :meth:`~IOBase.close` method is called.
Georg Brandl014197c2008-04-09 18:40:51 +0000627
Martin Panter6bb91f32016-05-28 00:41:57 +0000628 The optional argument *initial_bytes* is a :term:`bytes-like object` that
629 contains initial data.
Georg Brandl014197c2008-04-09 18:40:51 +0000630
631 :class:`BytesIO` provides or overrides these methods in addition to those
632 from :class:`BufferedIOBase` and :class:`IOBase`:
633
Antoine Pitrou972ee132010-09-06 18:48:21 +0000634 .. method:: getbuffer()
635
636 Return a readable and writable view over the contents of the buffer
637 without copying them. Also, mutating the view will transparently
638 update the contents of the buffer::
639
640 >>> b = io.BytesIO(b"abcdef")
641 >>> view = b.getbuffer()
642 >>> view[2:4] = b"56"
643 >>> b.getvalue()
644 b'ab56ef'
645
646 .. note::
647 As long as the view exists, the :class:`BytesIO` object cannot be
Serhiy Storchakac057c382015-02-03 02:00:18 +0200648 resized or closed.
Antoine Pitrou972ee132010-09-06 18:48:21 +0000649
650 .. versionadded:: 3.2
651
Georg Brandl014197c2008-04-09 18:40:51 +0000652 .. method:: getvalue()
653
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300654 Return :class:`bytes` containing the entire contents of the buffer.
Georg Brandl014197c2008-04-09 18:40:51 +0000655
Serhiy Storchakac057c382015-02-03 02:00:18 +0200656
Martin Panterccb2c0e2016-10-20 23:48:14 +0000657 .. method:: read1([size])
Georg Brandl014197c2008-04-09 18:40:51 +0000658
Martin Panterccb2c0e2016-10-20 23:48:14 +0000659 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.read`.
Georg Brandl014197c2008-04-09 18:40:51 +0000660
Martin Panterccb2c0e2016-10-20 23:48:14 +0000661 .. versionchanged:: 3.7
662 The *size* argument is now optional.
Benjamin Petersona96fea02014-06-22 14:17:44 -0700663
Martin Panterccb2c0e2016-10-20 23:48:14 +0000664 .. method:: readinto1(b)
665
666 In :class:`BytesIO`, this is the same as :meth:`~BufferedIOBase.readinto`.
Benjamin Petersona96fea02014-06-22 14:17:44 -0700667
668 .. versionadded:: 3.5
Georg Brandl014197c2008-04-09 18:40:51 +0000669
Georg Brandl3dd33882009-06-01 17:35:27 +0000670.. class:: BufferedReader(raw, buffer_size=DEFAULT_BUFFER_SIZE)
Georg Brandl014197c2008-04-09 18:40:51 +0000671
Géry Ogam3b58a702019-09-11 16:55:13 +0200672 A buffered binary stream providing higher-level access to a readable, non
673 seekable :class:`RawIOBase` raw binary stream. It inherits
674 :class:`BufferedIOBase`.
675
Antoine Pitrou497a7672009-09-17 17:18:01 +0000676 When reading data from this object, a larger amount of data may be
677 requested from the underlying raw stream, and kept in an internal buffer.
678 The buffered data can then be returned directly on subsequent reads.
Georg Brandl014197c2008-04-09 18:40:51 +0000679
680 The constructor creates a :class:`BufferedReader` for the given readable
681 *raw* stream and *buffer_size*. If *buffer_size* is omitted,
682 :data:`DEFAULT_BUFFER_SIZE` is used.
683
684 :class:`BufferedReader` provides or overrides these methods in addition to
685 those from :class:`BufferedIOBase` and :class:`IOBase`:
686
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300687 .. method:: peek([size])
Georg Brandl014197c2008-04-09 18:40:51 +0000688
Benjamin Petersonc43a26d2009-06-16 23:09:24 +0000689 Return bytes from the stream without advancing the position. At most one
Benjamin Peterson2a8b54d2009-06-14 14:37:23 +0000690 single read on the raw stream is done to satisfy the call. The number of
691 bytes returned may be less or more than requested.
Georg Brandl014197c2008-04-09 18:40:51 +0000692
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300693 .. method:: read([size])
Georg Brandl014197c2008-04-09 18:40:51 +0000694
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300695 Read and return *size* bytes, or if *size* is not given or negative, until
696 EOF or if the read call would block in non-blocking mode.
Georg Brandl014197c2008-04-09 18:40:51 +0000697
Martin Panterccb2c0e2016-10-20 23:48:14 +0000698 .. method:: read1([size])
Georg Brandl014197c2008-04-09 18:40:51 +0000699
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300700 Read and return up to *size* bytes with only one call on the raw stream.
701 If at least one byte is buffered, only buffered bytes are returned.
Georg Brandl014197c2008-04-09 18:40:51 +0000702 Otherwise, one raw stream read call is made.
703
Martin Panterccb2c0e2016-10-20 23:48:14 +0000704 .. versionchanged:: 3.7
705 The *size* argument is now optional.
706
Georg Brandl014197c2008-04-09 18:40:51 +0000707
Georg Brandl3dd33882009-06-01 17:35:27 +0000708.. class:: BufferedWriter(raw, buffer_size=DEFAULT_BUFFER_SIZE)
Georg Brandl014197c2008-04-09 18:40:51 +0000709
Géry Ogam3b58a702019-09-11 16:55:13 +0200710 A buffered binary stream providing higher-level access to a writeable, non
711 seekable :class:`RawIOBase` raw binary stream. It inherits
712 :class:`BufferedIOBase`.
713
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300714 When writing to this object, data is normally placed into an internal
Antoine Pitrou497a7672009-09-17 17:18:01 +0000715 buffer. The buffer will be written out to the underlying :class:`RawIOBase`
716 object under various conditions, including:
717
718 * when the buffer gets too small for all pending data;
719 * when :meth:`flush()` is called;
720 * when a :meth:`seek()` is requested (for :class:`BufferedRandom` objects);
721 * when the :class:`BufferedWriter` object is closed or destroyed.
Georg Brandl014197c2008-04-09 18:40:51 +0000722
723 The constructor creates a :class:`BufferedWriter` for the given writeable
724 *raw* stream. If the *buffer_size* is not given, it defaults to
Benjamin Peterson394ee002009-03-05 22:33:59 +0000725 :data:`DEFAULT_BUFFER_SIZE`.
726
Georg Brandl014197c2008-04-09 18:40:51 +0000727 :class:`BufferedWriter` provides or overrides these methods in addition to
728 those from :class:`BufferedIOBase` and :class:`IOBase`:
729
730 .. method:: flush()
731
732 Force bytes held in the buffer into the raw stream. A
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000733 :exc:`BlockingIOError` should be raised if the raw stream blocks.
Georg Brandl014197c2008-04-09 18:40:51 +0000734
735 .. method:: write(b)
736
Martin Panter6bb91f32016-05-28 00:41:57 +0000737 Write the :term:`bytes-like object`, *b*, and return the
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300738 number of bytes written. When in non-blocking mode, a
739 :exc:`BlockingIOError` is raised if the buffer needs to be written out but
740 the raw stream blocks.
Georg Brandl014197c2008-04-09 18:40:51 +0000741
742
Georg Brandl3dd33882009-06-01 17:35:27 +0000743.. class:: BufferedRandom(raw, buffer_size=DEFAULT_BUFFER_SIZE)
Georg Brandl014197c2008-04-09 18:40:51 +0000744
Géry Ogam3b58a702019-09-11 16:55:13 +0200745 A buffered binary stream providing higher-level access to a seekable
746 :class:`RawIOBase` raw binary stream. It inherits :class:`BufferedReader`
747 and :class:`BufferedWriter`.
Georg Brandl014197c2008-04-09 18:40:51 +0000748
Benjamin Peterson2c5f8282008-04-13 00:27:46 +0000749 The constructor creates a reader and writer for a seekable raw stream, given
Georg Brandl014197c2008-04-09 18:40:51 +0000750 in the first argument. If the *buffer_size* is omitted it defaults to
Benjamin Peterson394ee002009-03-05 22:33:59 +0000751 :data:`DEFAULT_BUFFER_SIZE`.
752
Georg Brandl014197c2008-04-09 18:40:51 +0000753 :class:`BufferedRandom` is capable of anything :class:`BufferedReader` or
Christopher Headb13552c2019-04-12 08:50:41 -0700754 :class:`BufferedWriter` can do. In addition, :meth:`seek` and :meth:`tell`
755 are guaranteed to be implemented.
Georg Brandl014197c2008-04-09 18:40:51 +0000756
757
Antoine Pitrou13d28952011-08-20 19:48:43 +0200758.. class:: BufferedRWPair(reader, writer, buffer_size=DEFAULT_BUFFER_SIZE)
759
Géry Ogam3b58a702019-09-11 16:55:13 +0200760 A buffered binary stream providing higher-level access to two non seekable
761 :class:`RawIOBase` raw binary streams---one readable, the other writeable.
762 It inherits :class:`BufferedIOBase`.
Antoine Pitrou13d28952011-08-20 19:48:43 +0200763
764 *reader* and *writer* are :class:`RawIOBase` objects that are readable and
765 writeable respectively. If the *buffer_size* is omitted it defaults to
766 :data:`DEFAULT_BUFFER_SIZE`.
767
Antoine Pitrou13d28952011-08-20 19:48:43 +0200768 :class:`BufferedRWPair` implements all of :class:`BufferedIOBase`\'s methods
769 except for :meth:`~BufferedIOBase.detach`, which raises
770 :exc:`UnsupportedOperation`.
771
772 .. warning::
Larry Hastings3732ed22014-03-15 21:13:56 -0700773
Antoine Pitrou13d28952011-08-20 19:48:43 +0200774 :class:`BufferedRWPair` does not attempt to synchronize accesses to
775 its underlying raw streams. You should not pass it the same object
776 as reader and writer; use :class:`BufferedRandom` instead.
777
778
Georg Brandl014197c2008-04-09 18:40:51 +0000779Text I/O
Antoine Pitroub530e142010-08-30 12:41:00 +0000780^^^^^^^^
Georg Brandl014197c2008-04-09 18:40:51 +0000781
782.. class:: TextIOBase
783
784 Base class for text streams. This class provides a character and line based
Géry Ogam3b58a702019-09-11 16:55:13 +0200785 interface to stream I/O. It inherits :class:`IOBase`. There is no public
786 constructor.
Georg Brandl014197c2008-04-09 18:40:51 +0000787
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000788 :class:`TextIOBase` provides or overrides these data attributes and
789 methods in addition to those from :class:`IOBase`:
Georg Brandl014197c2008-04-09 18:40:51 +0000790
791 .. attribute:: encoding
792
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000793 The name of the encoding used to decode the stream's bytes into
Georg Brandl014197c2008-04-09 18:40:51 +0000794 strings, and to encode strings into bytes.
795
Benjamin Peterson0926ad12009-06-06 18:02:12 +0000796 .. attribute:: errors
797
798 The error setting of the decoder or encoder.
799
Georg Brandl014197c2008-04-09 18:40:51 +0000800 .. attribute:: newlines
801
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000802 A string, a tuple of strings, or ``None``, indicating the newlines
Antoine Pitrou497a7672009-09-17 17:18:01 +0000803 translated so far. Depending on the implementation and the initial
804 constructor flags, this may not be available.
Georg Brandl014197c2008-04-09 18:40:51 +0000805
Benjamin Petersonc609b6b2009-06-28 17:32:20 +0000806 .. attribute:: buffer
807
808 The underlying binary buffer (a :class:`BufferedIOBase` instance) that
809 :class:`TextIOBase` deals with. This is not part of the
Eli Benderskyf877a7c2012-07-14 21:22:25 +0300810 :class:`TextIOBase` API and may not exist in some implementations.
Benjamin Petersonc609b6b2009-06-28 17:32:20 +0000811
Benjamin Petersond2e0c792009-05-01 20:40:59 +0000812 .. method:: detach()
813
Antoine Pitrou497a7672009-09-17 17:18:01 +0000814 Separate the underlying binary buffer from the :class:`TextIOBase` and
815 return it.
Benjamin Petersond2e0c792009-05-01 20:40:59 +0000816
817 After the underlying buffer has been detached, the :class:`TextIOBase` is
818 in an unusable state.
819
820 Some :class:`TextIOBase` implementations, like :class:`StringIO`, may not
821 have the concept of an underlying buffer and calling this method will
822 raise :exc:`UnsupportedOperation`.
823
Benjamin Petersonedc36472009-05-01 20:48:14 +0000824 .. versionadded:: 3.1
825
Andrés Delfinob6bb77c2018-07-07 17:17:16 -0300826 .. method:: read(size=-1)
Georg Brandl014197c2008-04-09 18:40:51 +0000827
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300828 Read and return at most *size* characters from the stream as a single
829 :class:`str`. If *size* is negative or ``None``, reads until EOF.
Georg Brandl014197c2008-04-09 18:40:51 +0000830
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300831 .. method:: readline(size=-1)
Georg Brandl014197c2008-04-09 18:40:51 +0000832
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000833 Read until newline or EOF and return a single ``str``. If the stream is
834 already at EOF, an empty string is returned.
Georg Brandl014197c2008-04-09 18:40:51 +0000835
Serhiy Storchaka3c411542013-09-16 23:18:10 +0300836 If *size* is specified, at most *size* characters will be read.
Antoine Pitrou707bd4e2012-07-25 22:38:33 +0200837
Benjamin Peterson2a3d4d92019-07-10 19:43:04 -0700838 .. method:: seek(offset, whence=SEEK_SET)
Antoine Pitrouf49d1522012-01-21 20:20:49 +0100839
Martin Panterdb4220e2015-09-11 03:58:30 +0000840 Change the stream position to the given *offset*. Behaviour depends on
841 the *whence* parameter. The default value for *whence* is
842 :data:`SEEK_SET`.
Antoine Pitrouf49d1522012-01-21 20:20:49 +0100843
844 * :data:`SEEK_SET` or ``0``: seek from the start of the stream
845 (the default); *offset* must either be a number returned by
846 :meth:`TextIOBase.tell`, or zero. Any other *offset* value
847 produces undefined behaviour.
848 * :data:`SEEK_CUR` or ``1``: "seek" to the current position;
849 *offset* must be zero, which is a no-operation (all other values
850 are unsupported).
851 * :data:`SEEK_END` or ``2``: seek to the end of the stream;
852 *offset* must be zero (all other values are unsupported).
853
854 Return the new absolute position as an opaque number.
855
856 .. versionadded:: 3.1
857 The ``SEEK_*`` constants.
858
859 .. method:: tell()
860
861 Return the current stream position as an opaque number. The number
862 does not usually represent a number of bytes in the underlying
863 binary storage.
864
Georg Brandl014197c2008-04-09 18:40:51 +0000865 .. method:: write(s)
866
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000867 Write the string *s* to the stream and return the number of characters
868 written.
Georg Brandl014197c2008-04-09 18:40:51 +0000869
870
Antoine Pitrou664091b2011-07-23 22:00:03 +0200871.. class:: TextIOWrapper(buffer, encoding=None, errors=None, newline=None, \
872 line_buffering=False, write_through=False)
Georg Brandl014197c2008-04-09 18:40:51 +0000873
Géry Ogam3b58a702019-09-11 16:55:13 +0200874 A buffered text stream providing higher-level access to a
875 :class:`BufferedIOBase` buffered binary stream. It inherits
876 :class:`TextIOBase`.
Georg Brandl014197c2008-04-09 18:40:51 +0000877
878 *encoding* gives the name of the encoding that the stream will be decoded or
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300879 encoded with. It defaults to
880 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`.
Georg Brandl014197c2008-04-09 18:40:51 +0000881
Benjamin Petersonb85a5842008-04-13 21:39:58 +0000882 *errors* is an optional string that specifies how encoding and decoding
883 errors are to be handled. Pass ``'strict'`` to raise a :exc:`ValueError`
884 exception if there is an encoding error (the default of ``None`` has the same
885 effect), or pass ``'ignore'`` to ignore errors. (Note that ignoring encoding
886 errors can lead to data loss.) ``'replace'`` causes a replacement marker
Serhiy Storchaka07985ef2015-01-25 22:56:57 +0200887 (such as ``'?'``) to be inserted where there is malformed data.
888 ``'backslashreplace'`` causes malformed data to be replaced by a
889 backslashed escape sequence. When writing, ``'xmlcharrefreplace'``
890 (replace with the appropriate XML character reference) or ``'namereplace'``
891 (replace with ``\N{...}`` escape sequences) can be used. Any other error
892 handling name that has been registered with
Serhiy Storchaka166ebc42014-11-25 13:57:17 +0200893 :func:`codecs.register_error` is also valid.
Georg Brandl014197c2008-04-09 18:40:51 +0000894
R David Murray1b00f252012-08-15 10:43:58 -0400895 .. index::
896 single: universal newlines; io.TextIOWrapper class
897
Antoine Pitrou0c1c0d42012-08-04 00:55:38 +0200898 *newline* controls how line endings are handled. It can be ``None``,
899 ``''``, ``'\n'``, ``'\r'``, and ``'\r\n'``. It works as follows:
900
R David Murray1b00f252012-08-15 10:43:58 -0400901 * When reading input from the stream, if *newline* is ``None``,
R David Murrayee0a9452012-08-15 11:05:36 -0400902 :term:`universal newlines` mode is enabled. Lines in the input can end in
903 ``'\n'``, ``'\r'``, or ``'\r\n'``, and these are translated into ``'\n'``
Géry Ogam3b58a702019-09-11 16:55:13 +0200904 before being returned to the caller. If *newline* is ``''``, universal
905 newlines mode is enabled, but line endings are returned to the caller
906 untranslated. If *newline* has any of the other legal values, input lines
907 are only terminated by the given string, and the line ending is returned to
908 the caller untranslated.
Antoine Pitrou0c1c0d42012-08-04 00:55:38 +0200909
Georg Brandl296d1be2012-08-14 09:39:07 +0200910 * When writing output to the stream, if *newline* is ``None``, any ``'\n'``
911 characters written are translated to the system default line separator,
912 :data:`os.linesep`. If *newline* is ``''`` or ``'\n'``, no translation
913 takes place. If *newline* is any of the other legal values, any ``'\n'``
914 characters written are translated to the given string.
Georg Brandl014197c2008-04-09 18:40:51 +0000915
916 If *line_buffering* is ``True``, :meth:`flush` is implied when a call to
Elena Oat7ffd4c52018-05-14 17:48:01 +0300917 write contains a newline character or a carriage return.
Georg Brandl014197c2008-04-09 18:40:51 +0000918
Antoine Pitrou664091b2011-07-23 22:00:03 +0200919 If *write_through* is ``True``, calls to :meth:`write` are guaranteed
920 not to be buffered: any data written on the :class:`TextIOWrapper`
921 object is immediately handled to its underlying binary *buffer*.
922
923 .. versionchanged:: 3.3
924 The *write_through* argument has been added.
925
Victor Stinnerf86a5e82012-06-05 13:43:22 +0200926 .. versionchanged:: 3.3
927 The default *encoding* is now ``locale.getpreferredencoding(False)``
928 instead of ``locale.getpreferredencoding()``. Don't change temporary the
929 locale encoding using :func:`locale.setlocale`, use the current locale
930 encoding instead of the user preferred encoding.
931
Géry Ogam3b58a702019-09-11 16:55:13 +0200932 :class:`TextIOWrapper` provides these data attributes and methods in
933 addition to those from :class:`TextIOBase` and :class:`IOBase`:
Georg Brandl014197c2008-04-09 18:40:51 +0000934
Georg Brandl014197c2008-04-09 18:40:51 +0000935 .. attribute:: line_buffering
936
937 Whether line buffering is enabled.
Georg Brandl48310cd2009-01-03 21:18:54 +0000938
Antoine Pitrou3c2817b2017-06-03 12:32:28 +0200939 .. attribute:: write_through
940
941 Whether writes are passed immediately to the underlying binary
942 buffer.
943
944 .. versionadded:: 3.7
945
INADA Naoki507434f2017-12-21 09:59:53 +0900946 .. method:: reconfigure(*[, encoding][, errors][, newline][, \
947 line_buffering][, write_through])
Antoine Pitrou3c2817b2017-06-03 12:32:28 +0200948
INADA Naoki507434f2017-12-21 09:59:53 +0900949 Reconfigure this text stream using new settings for *encoding*,
950 *errors*, *newline*, *line_buffering* and *write_through*.
951
952 Parameters not specified keep current settings, except
Harmon35068bd2019-06-19 16:01:27 -0500953 ``errors='strict'`` is used when *encoding* is specified but
INADA Naoki507434f2017-12-21 09:59:53 +0900954 *errors* is not specified.
955
956 It is not possible to change the encoding or newline if some data
957 has already been read from the stream. On the other hand, changing
958 encoding after write is possible.
Antoine Pitrou3c2817b2017-06-03 12:32:28 +0200959
960 This method does an implicit stream flush before setting the
961 new parameters.
962
963 .. versionadded:: 3.7
964
Georg Brandl014197c2008-04-09 18:40:51 +0000965
Antoine Pitroube7ff9f2014-02-02 22:48:25 +0100966.. class:: StringIO(initial_value='', newline='\\n')
Georg Brandl014197c2008-04-09 18:40:51 +0000967
Géry Ogam3b58a702019-09-11 16:55:13 +0200968 A text stream using an in-memory text buffer. It inherits
969 :class:`TextIOBase`.
970
971 The text buffer is discarded when the :meth:`~IOBase.close` method is
972 called.
Georg Brandl014197c2008-04-09 18:40:51 +0000973
Martin Pantercfad5432015-10-10 03:01:20 +0000974 The initial value of the buffer can be set by providing *initial_value*.
975 If newline translation is enabled, newlines will be encoded as if by
976 :meth:`~TextIOBase.write`. The stream is positioned at the start of
977 the buffer.
978
Géry Ogam3b58a702019-09-11 16:55:13 +0200979 The *newline* argument works like that of :class:`TextIOWrapper`,
980 except that when writing output to the stream, if *newline* is ``None``,
981 newlines are written as ``\n`` on all platforms.
Georg Brandl014197c2008-04-09 18:40:51 +0000982
Mark Summerfielde6d5f302008-04-21 10:29:45 +0000983 :class:`StringIO` provides this method in addition to those from
Géry Ogam3b58a702019-09-11 16:55:13 +0200984 :class:`TextIOBase` and :class:`IOBase`:
Georg Brandl014197c2008-04-09 18:40:51 +0000985
986 .. method:: getvalue()
987
Serhiy Storchakac057c382015-02-03 02:00:18 +0200988 Return a ``str`` containing the entire contents of the buffer.
Martin Pantercfad5432015-10-10 03:01:20 +0000989 Newlines are decoded as if by :meth:`~TextIOBase.read`, although
990 the stream position is not changed.
Georg Brandl014197c2008-04-09 18:40:51 +0000991
Georg Brandl2932d932008-05-30 06:27:09 +0000992 Example usage::
993
994 import io
995
996 output = io.StringIO()
997 output.write('First line.\n')
998 print('Second line.', file=output)
999
1000 # Retrieve file contents -- this will be
1001 # 'First line.\nSecond line.\n'
1002 contents = output.getvalue()
1003
Georg Brandl48310cd2009-01-03 21:18:54 +00001004 # Close object and discard memory buffer --
Georg Brandl2932d932008-05-30 06:27:09 +00001005 # .getvalue() will now raise an exception.
1006 output.close()
Georg Brandl014197c2008-04-09 18:40:51 +00001007
Antoine Pitroub530e142010-08-30 12:41:00 +00001008
R David Murray1b00f252012-08-15 10:43:58 -04001009.. index::
1010 single: universal newlines; io.IncrementalNewlineDecoder class
1011
Georg Brandl014197c2008-04-09 18:40:51 +00001012.. class:: IncrementalNewlineDecoder
1013
R David Murray1b00f252012-08-15 10:43:58 -04001014 A helper codec that decodes newlines for :term:`universal newlines` mode.
1015 It inherits :class:`codecs.IncrementalDecoder`.
Georg Brandl014197c2008-04-09 18:40:51 +00001016
Antoine Pitroubed81c82010-12-03 19:14:17 +00001017
Antoine Pitroubed81c82010-12-03 19:14:17 +00001018Performance
Benjamin Petersonedf51322011-02-24 03:03:46 +00001019-----------
1020
1021This section discusses the performance of the provided concrete I/O
1022implementations.
Antoine Pitroubed81c82010-12-03 19:14:17 +00001023
1024Binary I/O
Benjamin Petersonedf51322011-02-24 03:03:46 +00001025^^^^^^^^^^
Antoine Pitroubed81c82010-12-03 19:14:17 +00001026
Benjamin Petersonedf51322011-02-24 03:03:46 +00001027By reading and writing only large chunks of data even when the user asks for a
1028single byte, buffered I/O hides any inefficiency in calling and executing the
1029operating system's unbuffered I/O routines. The gain depends on the OS and the
1030kind of I/O which is performed. For example, on some modern OSes such as Linux,
1031unbuffered disk I/O can be as fast as buffered I/O. The bottom line, however,
1032is that buffered I/O offers predictable performance regardless of the platform
Eli Benderskyf877a7c2012-07-14 21:22:25 +03001033and the backing device. Therefore, it is almost always preferable to use
1034buffered I/O rather than unbuffered I/O for binary data.
Antoine Pitroubed81c82010-12-03 19:14:17 +00001035
1036Text I/O
Benjamin Petersonedf51322011-02-24 03:03:46 +00001037^^^^^^^^
Antoine Pitroubed81c82010-12-03 19:14:17 +00001038
1039Text I/O over a binary storage (such as a file) is significantly slower than
Benjamin Petersonedf51322011-02-24 03:03:46 +00001040binary I/O over the same storage, because it requires conversions between
1041unicode and binary data using a character codec. This can become noticeable
1042handling huge amounts of text data like large log files. Also,
1043:meth:`TextIOWrapper.tell` and :meth:`TextIOWrapper.seek` are both quite slow
1044due to the reconstruction algorithm used.
Antoine Pitroubed81c82010-12-03 19:14:17 +00001045
1046:class:`StringIO`, however, is a native in-memory unicode container and will
1047exhibit similar speed to :class:`BytesIO`.
1048
1049Multi-threading
1050^^^^^^^^^^^^^^^
1051
Benjamin Petersonedf51322011-02-24 03:03:46 +00001052:class:`FileIO` objects are thread-safe to the extent that the operating system
1053calls (such as ``read(2)`` under Unix) they wrap are thread-safe too.
Antoine Pitroubed81c82010-12-03 19:14:17 +00001054
1055Binary buffered objects (instances of :class:`BufferedReader`,
1056:class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`)
1057protect their internal structures using a lock; it is therefore safe to call
1058them from multiple threads at once.
1059
1060:class:`TextIOWrapper` objects are not thread-safe.
1061
1062Reentrancy
1063^^^^^^^^^^
1064
1065Binary buffered objects (instances of :class:`BufferedReader`,
1066:class:`BufferedWriter`, :class:`BufferedRandom` and :class:`BufferedRWPair`)
1067are not reentrant. While reentrant calls will not happen in normal situations,
Benjamin Petersonedf51322011-02-24 03:03:46 +00001068they can arise from doing I/O in a :mod:`signal` handler. If a thread tries to
Eli Benderskyf877a7c2012-07-14 21:22:25 +03001069re-enter a buffered object which it is already accessing, a :exc:`RuntimeError`
1070is raised. Note this doesn't prohibit a different thread from entering the
Benjamin Petersonedf51322011-02-24 03:03:46 +00001071buffered object.
Antoine Pitroubed81c82010-12-03 19:14:17 +00001072
Benjamin Petersonedf51322011-02-24 03:03:46 +00001073The above implicitly extends to text files, since the :func:`open()` function
1074will wrap a buffered object inside a :class:`TextIOWrapper`. This includes
Géry Ogam3b58a702019-09-11 16:55:13 +02001075standard streams and therefore affects the built-in :func:`print()` function as
Benjamin Petersonedf51322011-02-24 03:03:46 +00001076well.