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 « xml.sax » Python 3.11.3

Classe « ContentHandler »

Informations générales

Héritage

builtins.object
    ContentHandler

Définition

class ContentHandler(builtins.object):

help(ContentHandler)

Interface for receiving logical document content events.

    This is the main callback interface in SAX, and the one most
    important to applications. The order of events in this interface
    mirrors the order of the information in the document.

Constructeur(s)

Signature du constructeur Description
__init__(self)

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
characters(self, content) Receive notification of character data. [extrait de characters.__doc__]
endDocument(self) Receive notification of the end of a document. [extrait de endDocument.__doc__]
endElement(self, name) Signals the end of an element in non-namespace mode. [extrait de endElement.__doc__]
endElementNS(self, name, qname) Signals the end of an element in namespace mode. [extrait de endElementNS.__doc__]
endPrefixMapping(self, prefix) End the scope of a prefix-URI mapping. [extrait de endPrefixMapping.__doc__]
ignorableWhitespace(self, whitespace) Receive notification of ignorable whitespace in element content. [extrait de ignorableWhitespace.__doc__]
processingInstruction(self, target, data) Receive notification of a processing instruction. [extrait de processingInstruction.__doc__]
setDocumentLocator(self, locator) Called by the parser to give the application a locator for [extrait de setDocumentLocator.__doc__]
skippedEntity(self, name) Receive notification of a skipped entity. [extrait de skippedEntity.__doc__]
startDocument(self) Receive notification of the beginning of a document. [extrait de startDocument.__doc__]
startElement(self, name, attrs) Signals the start of an element in non-namespace mode. [extrait de startElement.__doc__]
startElementNS(self, name, qname, attrs) Signals the start of an element in namespace mode. [extrait de startElementNS.__doc__]
startPrefixMapping(self, prefix, uri) Begin the scope of a prefix-URI Namespace mapping. [extrait de startPrefixMapping.__doc__]

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__