io
— Core tools for working with streams¶
Source code:Lib/io.py
Overview¶
Theio
module provides Python’s main facilities for dealing with varioustypes of I/O. There are three main types of I/O:text I/O,binary I/Oandraw I/O. These are generic categories, and various backing stores canbe used for each of them. A concrete object belonging to any of thesecategories is called afile object. Other common terms arestreamandfile-like object.
Independent of its category, each concrete stream object will also havevarious capabilities: it can be read-only, write-only, or read-write. It canalso allow arbitrary random access (seeking forwards or backwards to anylocation), or only sequential access (for example in the case of a socket orpipe).
All streams are careful about the type of data you give to them. For examplegiving astr
object to thewrite()
method of a binary streamwill raise aTypeError
. So will giving abytes
object to thewrite()
method of a text stream.
Changed in version 3.3:Operations that used to raiseIOError
now raiseOSError
, sinceIOError
is now an alias ofOSError
.
Text I/O¶
Text I/O expects and producesstr
objects. This means that wheneverthe backing store is natively made of bytes (such as in the case of a file),encoding and decoding of data is made transparently as well as optionaltranslation of platform-specific newline characters.
The easiest way to create a text stream is withopen()
, optionallyspecifying an encoding:
f=open("myfile.txt","r",encoding="utf-8")
In-memory text streams are also available asStringIO
objects:
f=io.StringIO("some initial text data")
The text stream API is described in detail in the documentation ofTextIOBase
.
Binary I/O¶
Binary I/O (also calledbuffered I/O) expectsbytes-like objects and producesbytes
objects. No encoding, decoding, or newline translation is performed. Thiscategory of streams can be used for all kinds of non-text data, and also whenmanual control over the handling of text data is desired.
The easiest way to create a binary stream is withopen()
with'b'
inthe mode string:
f=open("myfile.jpg","rb")
In-memory binary streams are also available asBytesIO
objects:
f=io.BytesIO(b"some initial binary data:\x00\x01")
The binary stream API is described in detail in the docs ofBufferedIOBase
.
Other library modules may provide additional ways to create text or binarystreams. Seesocket.socket.makefile()
for example.
Raw I/O¶
Raw I/O (also calledunbuffered I/O) is generally used as a low-levelbuilding-block for binary and text streams; it is rarely useful to directlymanipulate a raw stream from user code. Nevertheless, you can create a rawstream by opening a file in binary mode with buffering disabled:
f=open("myfile.jpg","rb",buffering=0)
The raw stream API is described in detail in the docs ofRawIOBase
.
Text Encoding¶
The default encoding ofTextIOWrapper
andopen()
islocale-specific (locale.getencoding()
).
However, many developers forget to specify the encoding when opening text filesencoded in UTF-8 (e.g. JSON, TOML, Markdown, etc…) since most Unixplatforms use UTF-8 locale by default. This causes bugs because the localeencoding is not UTF-8 for most Windows users. For example:
# May not work on Windows when non-ASCII characters in the file.withopen("README.md")asf:long_description=f.read()
Accordingly, it is highly recommended that you specify the encodingexplicitly when opening text files. If you want to use UTF-8, passencoding="utf-8"
. To use the current locale encoding,encoding="locale"
is supported since Python 3.10.
See also
- Python UTF-8 Mode
Python UTF-8 Mode can be used to change the default encoding toUTF-8 from locale-specific encoding.
- PEP 686
Python 3.15 will makePython UTF-8 Mode default.
Opt-in EncodingWarning¶
Added in version 3.10:SeePEP 597 for more details.
To find where the default locale encoding is used, you can enablethe-Xwarn_default_encoding
command line option or set thePYTHONWARNDEFAULTENCODING
environment variable, which willemit anEncodingWarning
when the default encoding is used.
If you are providing an API that usesopen()
orTextIOWrapper
and passesencoding=None
as a parameter, youcan usetext_encoding()
so that callers of the API will emit anEncodingWarning
if they don’t pass anencoding
. However,please consider using UTF-8 by default (i.e.encoding="utf-8"
) fornew APIs.
High-level Module Interface¶
- io.DEFAULT_BUFFER_SIZE¶
An int containing the default buffer size used by the module’s buffered I/Oclasses.
open()
uses the file’s blksize (as obtained byos.stat()
) if possible.
- io.open(file,mode='r',buffering=-1,encoding=None,errors=None,newline=None,closefd=True,opener=None)¶
This is an alias for the builtin
open()
function.This function raises anauditing event
open
withargumentspath,mode andflags. Themode andflagsarguments may have been modified or inferred from the original call.
- io.open_code(path)¶
Opens the provided file with mode
'rb'
. This function should be usedwhen the intent is to treat the contents as executable code.path should be a
str
and an absolute path.The behavior of this function may be overridden by an earlier call to the
PyFile_SetOpenCodeHook()
. However, assuming thatpath is astr
and an absolute path,open_code(path)
should always behavethe same asopen(path,'rb')
. Overriding the behavior is intended foradditional validation or preprocessing of the file.Added in version 3.8.
- io.text_encoding(encoding,stacklevel=2,/)¶
This is a helper function for callables that use
open()
orTextIOWrapper
and have anencoding=None
parameter.This function returnsencoding if it is not
None
.Otherwise, it returns"locale"
or"utf-8"
depending onUTF-8 Mode.This function emits an
EncodingWarning
ifsys.flags.warn_default_encoding
is true andencodingisNone
.stacklevel specifies where the warning is emitted.For example:defread_text(path,encoding=None):encoding=io.text_encoding(encoding)# stacklevel=2withopen(path,encoding)asf:returnf.read()
In this example, an
EncodingWarning
is emitted for the caller ofread_text()
.SeeText Encoding for more information.
Added in version 3.10.
Changed in version 3.11:
text_encoding()
returns “utf-8” when UTF-8 mode is enabled andencoding isNone
.
- exceptionio.BlockingIOError¶
This is a compatibility alias for the builtin
BlockingIOError
exception.
- exceptionio.UnsupportedOperation¶
An exception inheriting
OSError
andValueError
that is raisedwhen an unsupported operation is called on a stream.
See also
sys
contains the standard IO streams:
sys.stdin
,sys.stdout
,andsys.stderr
.
Class hierarchy¶
The implementation of I/O streams is organized as a hierarchy of classes. Firstabstract base classes (ABCs), which are used tospecify the various categories of streams, then concrete classes providing thestandard stream implementations.
Note
The abstract base classes also provide default implementations of somemethods in order to help implementation of concrete stream classes. Forexample,BufferedIOBase
provides unoptimized implementations ofreadinto()
andreadline()
.
At the top of the I/O hierarchy is the abstract base classIOBase
. Itdefines the basic interface to a stream. Note, however, that there is noseparation between reading and writing to streams; implementations are allowedto raiseUnsupportedOperation
if they do not support a given operation.
TheRawIOBase
ABC extendsIOBase
. It deals with the readingand writing of bytes to a stream.FileIO
subclassesRawIOBase
to provide an interface to files in the machine’s file system.
TheBufferedIOBase
ABC extendsIOBase
. It deals withbuffering on a raw binary stream (RawIOBase
). Its subclasses,BufferedWriter
,BufferedReader
, andBufferedRWPair
buffer raw binary streams that are writable, readable, and both readable and writable,respectively.BufferedRandom
provides a buffered interface to seekable streams.AnotherBufferedIOBase
subclass,BytesIO
, is a stream ofin-memory bytes.
TheTextIOBase
ABC extendsIOBase
. It deals withstreams whose bytes represent text, and handles encoding and decoding to andfrom strings.TextIOWrapper
, which extendsTextIOBase
, is a buffered textinterface to a buffered raw stream (BufferedIOBase
). Finally,StringIO
is an in-memory stream for text.
Argument names are not part of the specification, and only the arguments ofopen()
are intended to be used as keyword arguments.
The following table summarizes the ABCs provided by theio
module:
ABC | Inherits | Stub Methods | Mixin Methods and Properties |
---|---|---|---|
|
| ||
| Inherited | ||
| Inherited | ||
| Inherited |
I/O Base Classes¶
- classio.IOBase¶
The abstract base class for all I/O classes.
This class provides empty abstract implementations for many methodsthat derived classes can override selectively; the defaultimplementations represent a file that cannot be read, written orseeked.
Even though
IOBase
does not declareread()
orwrite()
because their signatures will vary, implementations andclients should consider those methods part of the interface. Also,implementations may raise aValueError
(orUnsupportedOperation
)when operations they do not support are called.The basic type used for binary data read from or written to a file is
bytes
. Otherbytes-like objects areaccepted as method arguments too. Text I/O classes work withstr
data.Note that calling any method (even inquiries) on a closed stream isundefined. Implementations may raise
ValueError
in this case.IOBase
(and its subclasses) supports the iterator protocol, meaningthat anIOBase
object can be iterated over yielding the lines in astream. Lines are defined slightly differently depending on whether thestream is a binary stream (yielding bytes), or a text stream (yieldingcharacter strings). Seereadline()
below.IOBase
is also a context manager and therefore supports thewith
statement. In this example,file is closed after thewith
statement’s suite is finished—even if an exception occurs:withopen('spam.txt','w')asfile:file.write('Spam and eggs!')
IOBase
provides these data attributes and methods:- close()¶
Flush and close this stream. This method has no effect if the file isalready closed. Once the file is closed, any operation on the file(e.g. reading or writing) will raise a
ValueError
.As a convenience, it is allowed to call this method more than once;only the first call, however, will have an effect.
- closed¶
True
if the stream is closed.
- fileno()¶
Return the underlying file descriptor (an integer) of the stream if itexists. An
OSError
is raised if the IO object does not use a filedescriptor.
- flush()¶
Flush the write buffers of the stream if applicable. This does nothingfor read-only and non-blocking streams.
- isatty()¶
Return
True
if the stream is interactive (i.e., connected toa terminal/tty device).
- readline(size=-1,/)¶
Read and return one line from the stream. Ifsize is specified, atmostsize bytes will be read.
The line terminator is always
b'\n'
for binary files; for text files,thenewline argument toopen()
can be used to select the lineterminator(s) recognized.
- readlines(hint=-1,/)¶
Read and return a list of lines from the stream.hint can be specifiedto control the number of lines read: no more lines will be read if thetotal size (in bytes/characters) of all lines so far exceedshint.
hint values of
0
or less, as well asNone
, are treated as nohint.Note that it’s already possible to iterate on file objects using
forlineinfile:...
without callingfile.readlines()
.
- seek(offset,whence=os.SEEK_SET,/)¶
Change the stream position to the given byteoffset,interpreted relative to the position indicated bywhence,and return the new absolute position.Values forwhence are:
os.SEEK_SET
or0
– start of the stream (the default);offset should be zero or positiveos.SEEK_CUR
or1
– current stream position;offset may be negativeos.SEEK_END
or2
– end of the stream;offset is usually negative
Added in version 3.1:The
SEEK_*
constants.Added in version 3.3:Some operating systems could support additional values, like
os.SEEK_HOLE
oros.SEEK_DATA
. The valid valuesfor a file could depend on it being open in text or binary mode.
- seekable()¶
Return
True
if the stream supports random access. IfFalse
,seek()
,tell()
andtruncate()
will raiseOSError
.
- tell()¶
Return the current stream position.
- truncate(size=None,/)¶
Resize the stream to the givensize in bytes (or the current positionifsize is not specified). The current stream position isn’t changed.This resizing can extend or reduce the current file size. In case ofextension, the contents of the new file area depend on the platform(on most systems, additional bytes are zero-filled). The new file sizeis returned.
Changed in version 3.5:Windows will now zero-fill files when extending.
- writable()¶
Return
True
if the stream supports writing. IfFalse
,write()
andtruncate()
will raiseOSError
.
- classio.RawIOBase¶
Base class for raw binary streams. It inherits from
IOBase
.Raw binary streams typically provide low-level access to an underlying OSdevice or API, and do not try to encapsulate it in high-level primitives(this functionality is done at a higher-level in buffered binary streams and text streams, described laterin this page).
RawIOBase
provides these methods in addition to those fromIOBase
:- read(size=-1,/)¶
Read up tosize bytes from the object and return them. As a convenience,ifsize is unspecified or -1, all bytes until EOF are returned.Otherwise, only one system call is ever made. Fewer thansize bytes maybe returned if the operating system call returns fewer thansize bytes.
If 0 bytes are returned, andsize was not 0, this indicates end of file.If the object is in non-blocking mode and no bytes are available,
None
is returned.The default implementation defers to
readall()
andreadinto()
.
- readall()¶
Read and return all the bytes from the stream until EOF, using multiplecalls to the stream if necessary.
- readinto(b,/)¶
Read bytes into a pre-allocated, writablebytes-like objectb, and return thenumber of bytes read. For example,b might be a
bytearray
.If the object is in non-blocking mode and no bytesare available,None
is returned.
- write(b,/)¶
Write the givenbytes-like object,b, to theunderlying raw stream, and return the number ofbytes written. This can be less than the length ofb inbytes, depending on specifics of the underlying rawstream, and especially if it is in non-blocking mode.
None
isreturned if the raw stream is set not to block and no single byte couldbe readily written to it. The caller may release or mutateb afterthis method returns, so the implementation should only accessbduring the method call.
- classio.BufferedIOBase¶
Base class for binary streams that support some kind of buffering.It inherits from
IOBase
.The main difference with
RawIOBase
is that methodsread()
,readinto()
andwrite()
will try (respectively) to readas much input as requested or to emit all provided data.In addition, if the underlying raw stream is in non-blocking mode, when thesystem returns would block
write()
will raiseBlockingIOError
withBlockingIOError.characters_written
andread()
will returndata read so far orNone
if no data is available.Besides, the
read()
method does not have a defaultimplementation that defers toreadinto()
.A typical
BufferedIOBase
implementation should not inherit from aRawIOBase
implementation, but wrap one, likeBufferedWriter
andBufferedReader
do.BufferedIOBase
provides or overrides these data attributes andmethods in addition to those fromIOBase
:- raw¶
The underlying raw stream (a
RawIOBase
instance) thatBufferedIOBase
deals with. This is not part of theBufferedIOBase
API and may not exist on some implementations.
- detach()¶
Separate the underlying raw stream from the buffer and return it.
After the raw stream has been detached, the buffer is in an unusablestate.
Some buffers, like
BytesIO
, do not have the concept of a singleraw stream to return from this method. They raiseUnsupportedOperation
.Added in version 3.1.
- read(size=-1,/)¶
Read and return up tosize bytes. If the argument is omitted,
None
,or negative read as much as possible.Fewer bytes may be returned than requested. An empty
bytes
objectis returned if the stream is already at EOF. More than one read may bemade and calls may be retried if specific errors are encountered, seeos.read()
andPEP 475 for more details. Less than size bytesbeing returned does not imply that EOF is imminent.When reading as much as possible the default implementation will use
raw.readall
if available (which should implementRawIOBase.readall()
), otherwise will read in a loop until readreturnsNone
, an emptybytes
, or a non-retryable error. Formost streams this is to EOF, but for non-blocking streams more data maybecome available.Note
When the underlying raw stream is non-blocking, implementations mayeither raise
BlockingIOError
or returnNone
if no data isavailable.io
implementations returnNone
.
- read1(size=-1,/)¶
Read and return up tosize bytes, calling
readinto()
which may retry ifEINTR
is encountered perPEP 475. Ifsize is-1
or not provided, the implementation willchoose an arbitrary value forsize.Note
When the underlying raw stream is non-blocking, implementations mayeither raise
BlockingIOError
or returnNone
if no data isavailable.io
implementations returnNone
.
- readinto(b,/)¶
Read bytes into a pre-allocated, writablebytes-like objectb and return the number of bytes read.For example,b might be a
bytearray
.Like
read()
, multiple reads may be issued to the underlying rawstream, unless the latter is interactive.A
BlockingIOError
is raised if the underlying raw stream is in nonblocking-mode, and has no data available at the moment.
- readinto1(b,/)¶
Read bytes into a pre-allocated, writablebytes-like objectb, using at most one call tothe underlying raw stream’s
read()
(orreadinto()
) method. Return the number of bytes read.A
BlockingIOError
is raised if the underlying raw stream is in nonblocking-mode, and has no data available at the moment.Added in version 3.5.
- write(b,/)¶
Write the givenbytes-like object,b, and return the numberof bytes written (always equal to the length ofb in bytes, since ifthe write fails an
OSError
will be raised). Depending on theactual implementation, these bytes may be readily written to theunderlying stream, or held in a buffer for performance and latencyreasons.When in non-blocking mode, a
BlockingIOError
is raised if thedata needed to be written to the raw stream but it couldn’t acceptall the data without blocking.The caller may release or mutateb after this method returns,so the implementation should only accessb during the method call.
Raw File I/O¶
- classio.FileIO(name,mode='r',closefd=True,opener=None)¶
A raw binary stream representing an OS-level file containing bytes data. Itinherits from
RawIOBase
.Thename can be one of two things:
a character string or
bytes
object representing the path to thefile which will be opened. In this case closefd must beTrue
(the default)otherwise an error will be raised.an integer representing the number of an existing OS-level file descriptorto which the resulting
FileIO
object will give access. When theFileIO object is closed this fd will be closed as well, unlessclosefdis set toFalse
.
Themode can be
'r'
,'w'
,'x'
or'a'
for reading(default), writing, exclusive creation or appending. The file will becreated if it doesn’t exist when opened for writing or appending; it will betruncated when opened for writing.FileExistsError
will be raised ifit already exists when opened for creating. Opening a file for creatingimplies writing, so this mode behaves in a similar way to'w'
. Add a'+'
to the mode to allow simultaneous reading and writing.The
read()
(when called with a positive argument),readinto()
andwrite()
methods on thisclass will only make one system call.A custom opener can be used by passing a callable asopener. The underlyingfile descriptor for the file object is then obtained by callingopener with(name,flags).opener must return an open file descriptor (passing
os.open
asopener results in functionality similar to passingNone
).The newly created file isnon-inheritable.
See the
open()
built-in function for examples on using theopenerparameter.Changed in version 3.3:Theopener parameter was added.The
'x'
mode was added.Changed in version 3.4:The file is now non-inheritable.
FileIO
provides these data attributes in addition to those fromRawIOBase
andIOBase
:- mode¶
The mode as given in the constructor.
- name¶
The file name. This is the file descriptor of the file when no name isgiven in the constructor.
Buffered Streams¶
Buffered I/O streams provide a higher-level interface to an I/O devicethan raw I/O does.
- classio.BytesIO(initial_bytes=b'')¶
A binary stream using an in-memory bytes buffer. It inherits from
BufferedIOBase
. The buffer is discarded when theclose()
method is called.The optional argumentinitial_bytes is abytes-like object thatcontains initial data.
BytesIO
provides or overrides these methods in addition to thosefromBufferedIOBase
andIOBase
:- getbuffer()¶
Return a readable and writable view over the contents of the bufferwithout copying them. Also, mutating the view will transparentlyupdate the contents of the buffer:
>>>b=io.BytesIO(b"abcdef")>>>view=b.getbuffer()>>>view[2:4]=b"56">>>b.getvalue()b'ab56ef'
Note
As long as the view exists, the
BytesIO
object cannot beresized or closed.Added in version 3.2.
- read1(size=-1,/)¶
In
BytesIO
, this is the same asread()
.Changed in version 3.7:Thesize argument is now optional.
- readinto1(b,/)¶
In
BytesIO
, this is the same asreadinto()
.Added in version 3.5.
- classio.BufferedReader(raw,buffer_size=DEFAULT_BUFFER_SIZE)¶
A buffered binary stream providing higher-level access to a readable, nonseekable
RawIOBase
raw binary stream. It inherits fromBufferedIOBase
.When reading data from this object, a larger amount of data may berequested from the underlying raw stream, and kept in an internal buffer.The buffered data can then be returned directly on subsequent reads.
The constructor creates a
BufferedReader
for the given readableraw stream andbuffer_size. Ifbuffer_size is omitted,DEFAULT_BUFFER_SIZE
is used.BufferedReader
provides or overrides these methods in addition tothose fromBufferedIOBase
andIOBase
:- peek(size=0,/)¶
Return bytes from the stream without advancing the position. The number ofbytes returned may be less or more than requested. If the underlying rawstream is non-blocking and the operation would block, returns empty bytes.
- read(size=-1,/)¶
In
BufferedReader
this is the same asio.BufferedIOBase.read()
- read1(size=-1,/)¶
In
BufferedReader
this is the same asio.BufferedIOBase.read1()
Changed in version 3.7:Thesize argument is now optional.
- classio.BufferedWriter(raw,buffer_size=DEFAULT_BUFFER_SIZE)¶
A buffered binary stream providing higher-level access to a writeable, nonseekable
RawIOBase
raw binary stream. It inherits fromBufferedIOBase
.When writing to this object, data is normally placed into an internalbuffer. The buffer will be written out to the underlying
RawIOBase
object under various conditions, including:when the buffer gets too small for all pending data;
when
flush()
is called;when a
seek()
is requested (forBufferedRandom
objects);when the
BufferedWriter
object is closed or destroyed.
The constructor creates a
BufferedWriter
for the given writeableraw stream. If thebuffer_size is not given, it defaults toDEFAULT_BUFFER_SIZE
.BufferedWriter
provides or overrides these methods in addition tothose fromBufferedIOBase
andIOBase
:- flush()¶
Force bytes held in the buffer into the raw stream. A
BlockingIOError
should be raised if the raw stream blocks.
- write(b,/)¶
Write thebytes-like object,b, and return thenumber of bytes written. When in non-blocking mode, a
BlockingIOError
withBlockingIOError.characters_written
setis raised if the buffer needs to be written out but the raw stream blocks.
- classio.BufferedRandom(raw,buffer_size=DEFAULT_BUFFER_SIZE)¶
A buffered binary stream providing higher-level access to a seekable
RawIOBase
raw binary stream. It inherits fromBufferedReader
andBufferedWriter
.The constructor creates a reader and writer for a seekable raw stream, givenin the first argument. If thebuffer_size is omitted it defaults to
DEFAULT_BUFFER_SIZE
.BufferedRandom
is capable of anythingBufferedReader
orBufferedWriter
can do. In addition,seek()
andtell()
are guaranteed to be implemented.
- classio.BufferedRWPair(reader,writer,buffer_size=DEFAULT_BUFFER_SIZE,/)¶
A buffered binary stream providing higher-level access to two non seekable
RawIOBase
raw binary streams—one readable, the other writeable.It inherits fromBufferedIOBase
.reader andwriter are
RawIOBase
objects that are readable andwriteable respectively. If thebuffer_size is omitted it defaults toDEFAULT_BUFFER_SIZE
.BufferedRWPair
implements all ofBufferedIOBase
's methodsexcept fordetach()
, which raisesUnsupportedOperation
.Warning
BufferedRWPair
does not attempt to synchronize accesses toits underlying raw streams. You should not pass it the same objectas reader and writer; useBufferedRandom
instead.
Text I/O¶
- classio.TextIOBase¶
Base class for text streams. This class provides a character and line basedinterface to stream I/O. It inherits from
IOBase
.TextIOBase
provides or overrides these data attributes andmethods in addition to those fromIOBase
:- encoding¶
The name of the encoding used to decode the stream’s bytes intostrings, and to encode strings into bytes.
- errors¶
The error setting of the decoder or encoder.
- newlines¶
A string, a tuple of strings, or
None
, indicating the newlinestranslated so far. Depending on the implementation and the initialconstructor flags, this may not be available.
- buffer¶
The underlying binary buffer (a
BufferedIOBase
orRawIOBase
instance) thatTextIOBase
deals with.This is not part of theTextIOBase
API and may not existin some implementations.
- detach()¶
Separate the underlying binary buffer from the
TextIOBase
andreturn it.After the underlying buffer has been detached, the
TextIOBase
isin an unusable state.Some
TextIOBase
implementations, likeStringIO
, may nothave the concept of an underlying buffer and calling this method willraiseUnsupportedOperation
.Added in version 3.1.
- read(size=-1,/)¶
Read and return at mostsize characters from the stream as a single
str
. Ifsize is negative orNone
, reads until EOF.
- readline(size=-1,/)¶
Read until newline or EOF and return a single
str
. If the stream isalready at EOF, an empty string is returned.Ifsize is specified, at mostsize characters will be read.
- seek(offset,whence=SEEK_SET,/)¶
Change the stream position to the givenoffset. Behaviour depends onthewhence parameter. The default value forwhence is
SEEK_SET
.SEEK_SET
or0
: seek from the start of the stream(the default);offset must either be a number returned byTextIOBase.tell()
, or zero. Any otheroffset valueproduces undefined behaviour.SEEK_CUR
or1
: “seek” to the current position;offset must be zero, which is a no-operation (all other valuesare unsupported).SEEK_END
or2
: seek to the end of the stream;offset must be zero (all other values are unsupported).
Return the new absolute position as an opaque number.
Added in version 3.1:The
SEEK_*
constants.
- tell()¶
Return the current stream position as an opaque number. The numberdoes not usually represent a number of bytes in the underlyingbinary storage.
- classio.TextIOWrapper(buffer,encoding=None,errors=None,newline=None,line_buffering=False,write_through=False)¶
A buffered text stream providing higher-level access to a
BufferedIOBase
buffered binary stream. It inherits fromTextIOBase
.encoding gives the name of the encoding that the stream will be decoded orencoded with. InUTF-8 Mode, this defaults to UTF-8.Otherwise, it defaults to
locale.getencoding()
.encoding="locale"
can be used to specify the current locale’s encodingexplicitly. SeeText Encoding for more information.errors is an optional string that specifies how encoding and decodingerrors are to be handled. Pass
'strict'
to raise aValueError
exception if there is an encoding error (the default ofNone
has the sameeffect), or pass'ignore'
to ignore errors. (Note that ignoring encodingerrors can lead to data loss.)'replace'
causes a replacement marker(such as'?'
) to be inserted where there is malformed data.'backslashreplace'
causes malformed data to be replaced by abackslashed escape sequence. When writing,'xmlcharrefreplace'
(replace with the appropriate XML character reference) or'namereplace'
(replace with\N{...}
escape sequences) can be used. Any other errorhandling name that has been registered withcodecs.register_error()
is also valid.newline controls how line endings are handled. It can be
None
,''
,'\n'
,'\r'
, and'\r\n'
. It works as follows:When reading input from the stream, ifnewline is
None
,universal newlines mode is enabled. Lines in the input can end in'\n'
,'\r'
, or'\r\n'
, and these are translated into'\n'
before being returned to the caller. Ifnewline is''
, universalnewlines mode is enabled, but line endings are returned to the calleruntranslated. Ifnewline has any of the other legal values, input linesare only terminated by the given string, and the line ending is returned tothe caller untranslated.When writing output to the stream, ifnewline is
None
, any'\n'
characters written are translated to the system default line separator,os.linesep
. Ifnewline is''
or'\n'
, no translationtakes place. Ifnewline is any of the other legal values, any'\n'
characters written are translated to the given string.
Ifline_buffering is
True
,flush()
is implied when a call towrite contains a newline character or a carriage return.Ifwrite_through is
True
, calls towrite()
are guaranteednot to be buffered: any data written on theTextIOWrapper
object is immediately handled to its underlying binarybuffer.Changed in version 3.3:Thewrite_through argument has been added.
Changed in version 3.3:The defaultencoding is now
locale.getpreferredencoding(False)
instead oflocale.getpreferredencoding()
. Don’t change temporary thelocale encoding usinglocale.setlocale()
, use the current localeencoding instead of the user preferred encoding.Changed in version 3.10:Theencoding argument now supports the
"locale"
dummy encoding name.TextIOWrapper
provides these data attributes and methods inaddition to those fromTextIOBase
andIOBase
:- line_buffering¶
Whether line buffering is enabled.
- write_through¶
Whether writes are passed immediately to the underlying binarybuffer.
Added in version 3.7.
- reconfigure(*,encoding=None,errors=None,newline=None,line_buffering=None,write_through=None)¶
Reconfigure this text stream using new settings forencoding,errors,newline,line_buffering andwrite_through.
Parameters not specified keep current settings, except
errors='strict'
is used whenencoding is specified buterrors is not specified.It is not possible to change the encoding or newline if some datahas already been read from the stream. On the other hand, changingencoding after write is possible.
This method does an implicit stream flush before setting thenew parameters.
Added in version 3.7.
Changed in version 3.11:The method supports
encoding="locale"
option.
- seek(cookie,whence=os.SEEK_SET,/)¶
Set the stream position.Return the new stream position as an
int
.Four operations are supported,given by the following argument combinations:
seek(0,SEEK_SET)
: Rewind to the start of the stream.seek(cookie,SEEK_SET)
: Restore a previous position;cookiemust be a number returned bytell()
.seek(0,SEEK_END)
: Fast-forward to the end of the stream.seek(0,SEEK_CUR)
: Leave the current stream position unchanged.
Any other argument combinations are invalid,and may raise exceptions.
See also
- classio.StringIO(initial_value='',newline='\n')¶
A text stream using an in-memory text buffer. It inherits from
TextIOBase
.The text buffer is discarded when the
close()
method iscalled.The initial value of the buffer can be set by providinginitial_value.If newline translation is enabled, newlines will be encoded as if by
write()
. The stream is positioned at the start of thebuffer which emulates opening an existing file in aw+
mode, making itready for an immediate write from the beginning or for a write thatwould overwrite the initial value. To emulate opening a file in ana+
mode ready for appending, usef.seek(0,io.SEEK_END)
to reposition thestream at the end of the buffer.Thenewline argument works like that of
TextIOWrapper
,except that when writing output to the stream, ifnewline isNone
,newlines are written as\n
on all platforms.StringIO
provides this method in addition to those fromTextIOBase
andIOBase
:- getvalue()¶
Return a
str
containing the entire contents of the buffer.Newlines are decoded as if byread()
, althoughthe stream position is not changed.
Example usage:
importiooutput=io.StringIO()output.write('First line.\n')print('Second line.',file=output)# Retrieve file contents -- this will be# 'First line.\nSecond line.\n'contents=output.getvalue()# Close object and discard memory buffer --# .getvalue() will now raise an exception.output.close()
- classio.IncrementalNewlineDecoder¶
A helper codec that decodes newlines foruniversal newlines mode.It inherits from
codecs.IncrementalDecoder
.
Performance¶
This section discusses the performance of the provided concrete I/Oimplementations.
Binary I/O¶
By reading and writing only large chunks of data even when the user asks for asingle byte, buffered I/O hides any inefficiency in calling and executing theoperating system’s unbuffered I/O routines. The gain depends on the OS and thekind of I/O which is performed. For example, on some modern OSes such as Linux,unbuffered disk I/O can be as fast as buffered I/O. The bottom line, however,is that buffered I/O offers predictable performance regardless of the platformand the backing device. Therefore, it is almost always preferable to usebuffered I/O rather than unbuffered I/O for binary data.
Text I/O¶
Text I/O over a binary storage (such as a file) is significantly slower thanbinary I/O over the same storage, because it requires conversions betweenunicode and binary data using a character codec. This can become noticeablehandling huge amounts of text data like large log files. Also,tell()
andseek()
are both quite slowdue to the reconstruction algorithm used.
StringIO
, however, is a native in-memory unicode container and willexhibit similar speed toBytesIO
.
Multi-threading¶
FileIO
objects are thread-safe to the extent that the operating systemcalls (such asread(2) under Unix) they wrap are thread-safe too.
Binary buffered objects (instances ofBufferedReader
,BufferedWriter
,BufferedRandom
andBufferedRWPair
)protect their internal structures using a lock; it is therefore safe to callthem from multiple threads at once.
TextIOWrapper
objects are not thread-safe.
Reentrancy¶
Binary buffered objects (instances ofBufferedReader
,BufferedWriter
,BufferedRandom
andBufferedRWPair
)are not reentrant. While reentrant calls will not happen in normal situations,they can arise from doing I/O in asignal
handler. If a thread tries tore-enter a buffered object which it is already accessing, aRuntimeError
is raised. Note this doesn’t prohibit a different thread from entering thebuffered object.
The above implicitly extends to text files, since theopen()
functionwill wrap a buffered object inside aTextIOWrapper
. This includesstandard streams and therefore affects the built-inprint()
function aswell.