Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « codecs » Python 3.11.3

Classe « StreamRecoder »

Informations générales

Héritage

builtins.object
    StreamRecoder

Définition

class StreamRecoder(builtins.object):

help(StreamRecoder)

 StreamRecoder instances translate data from one encoding to another.

        They use the complete set of APIs returned by the
        codecs.lookup() function to implement their task.

        Data written to the StreamRecoder is first decoded into an
        intermediate format (depending on the "decode" codec) and then
        written to the underlying stream using an instance of the provided
        Writer class.

        In the other direction, data is read from the underlying stream using
        a Reader instance and then encoded and returned to the caller.

    

Constructeur(s)

Signature du constructeur Description
__init__(self, stream, encode, decode, Reader, Writer, errors='strict') Creates a StreamRecoder instance which implements a two-way [extrait de __init__.__doc__]

Liste des attributs statiques

Nom de l'attribut Valeur
data_encodingunknown
file_encodingunknown

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__enter__(self)
__exit__(self, type, value, tb)
__getattr__(self, name, getattr=<built-in function getattr>) Inherit all other methods from the underlying stream. [extrait de __getattr__.__doc__]
__iter__(self)
__next__(self) Return the next decoded line from the input stream. [extrait de __next__.__doc__]
read(self, size=-1)
readline(self, size=None)
readlines(self, sizehint=None)
reset(self)
seek(self, offset, whence=0)
write(self, data)
writelines(self, list)

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __getstate__, __hash__, __init_subclass__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__