zmc
2023-12-22 9fdbf60165db0400c2e8e6be2dc6e88138ac719a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
U
H=®dã@s6dZddlmZmZmZddlmZiZddd„ZdS)    a)A collection of modules for building different kinds of trees from HTML
documents.
 
To create a treebuilder for a new type of tree, you need to do
implement several things:
 
1. A set of classes for various types of elements: Document, Doctype, Comment,
   Element. These must implement the interface of ``base.treebuilders.Node``
   (although comment nodes have a different signature for their constructor,
   see ``treebuilders.etree.Comment``) Textual content may also be implemented
   as another node type, or not, as your tree implementation requires.
 
2. A treebuilder object (called ``TreeBuilder`` by convention) that inherits
   from ``treebuilders.base.TreeBuilder``. This has 4 required attributes:
 
   * ``documentClass`` - the class to use for the bottommost node of a document
   * ``elementClass`` - the class to use for HTML Elements
   * ``commentClass`` - the class to use for comments
   * ``doctypeClass`` - the class to use for doctypes
 
   It also has one required method:
 
   * ``getDocument`` - Returns the root node of the complete document tree
 
3. If you wish to run the unit tests, you must also create a ``testSerializer``
   method on your treebuilder which accepts a node and returns a string
   containing Node and its children serialized according to the format used in
   the unittests
 
é)Úabsolute_importÚdivisionÚunicode_literalsé)Ú default_etreeNcKs²| ¡}|tkr¨|dkrLddlm}|dkr<ddlm}|}|j|f|ŽjS|dkrlddlm}|jt|<n<|d    krœdd
lm    }|dkrŒt
}|j |f|ŽjSt d |ƒ‚t  |¡S) aGet a TreeBuilder class for various types of trees with built-in support
 
    :arg treeType: the name of the tree type required (case-insensitive). Supported
        values are:
 
        * "dom" - A generic builder for DOM implementations, defaulting to a
          xml.dom.minidom based implementation.
        * "etree" - A generic builder for tree implementations exposing an
          ElementTree-like interface, defaulting to xml.etree.cElementTree if
          available and xml.etree.ElementTree if not.
        * "lxml" - A etree-based builder for lxml.etree, handling limitations
          of lxml's implementation.
 
    :arg implementation: (Currently applies to the "etree" and "dom" tree
        types). A module implementing the tree type e.g. xml.etree.ElementTree
        or xml.etree.cElementTree.
 
    :arg kwargs: Any additional options to pass to the TreeBuilder when
        creating it.
 
    Example:
 
    >>> from html5lib.treebuilders import getTreeBuilder
    >>> builder = getTreeBuilder('etree')
 
    Údomé)rNr)ÚminidomÚlxml)Ú
etree_lxmlÚetree)r zUnrecognised treebuilder "%s" )ÚlowerÚtreeBuilderCacheÚrÚxml.domr    Ú getDomModuleÚ TreeBuilderr r rÚgetETreeModuleÚ
ValueErrorÚget)ÚtreeTypeÚimplementationÚkwargsrr    r r ©rúaD:\z\workplace\VsCode\pyvenv\venv\Lib\site-packages\pip/_vendor/html5lib/treebuilders/__init__.pyÚgetTreeBuilder's$      r)N)    Ú__doc__Ú
__future__rrrÚ_utilsrrrrrrrÚ<module>s