KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache
System : Linux cs317.bluehost.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : andertr9 ( 1047)
PHP Version : 8.2.18
Disable Function : NONE
Directory :  /usr/lib64/python2.7/site-packages/lxml/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/lib64/python2.7/site-packages/lxml/builder.pyc
�
���Pc@s�dZddljZyddlmZWnek
rEd�ZnXyeWnek
rjd�ZnXye	Wnek
r�e
Z	nXyeWnek
r�e
ZnXdefd��YZ
e
�ZdS(s9
The ``E`` Element factory for generating XML documents.
i����N(tpartialcs��fd�S(Ncs��||�S(N((targstkwargs(tfuncttag(s2/usr/lib64/python2.7/site-packages/lxml/builder.pyt<lambda>/s((RR((RRs2/usr/lib64/python2.7/site-packages/lxml/builder.pyR.scCs
t|d�S(Nt__call__(thasattr(tf((s2/usr/lib64/python2.7/site-packages/lxml/builder.pytcallable5stElementMakercBs5eZdZddddd�Zd�Zd�ZRS(sOElement generator factory.

    Unlike the ordinary Element factory, the E factory allows you to pass in
    more than just a tag and some optional attributes; you can also pass in
    text and other elements.  The text is added as either text or tail
    attributes, and elements are inserted at the right spot.  Some small
    examples::

        >>> from lxml import etree as ET
        >>> from lxml.builder import E

        >>> ET.tostring(E("tag"))
        '<tag/>'
        >>> ET.tostring(E("tag", "text"))
        '<tag>text</tag>'
        >>> ET.tostring(E("tag", "text", key="value"))
        '<tag key="value">text</tag>'
        >>> ET.tostring(E("tag", E("subtag", "text"), "tail"))
        '<tag><subtag>text</subtag>tail</tag>'

    For simple tags, the factory also allows you to write ``E.tag(...)`` instead
    of ``E('tag', ...)``::

        >>> ET.tostring(E.tag())
        '<tag/>'
        >>> ET.tostring(E.tag("text"))
        '<tag>text</tag>'
        >>> ET.tostring(E.tag(E.subtag("text"), "tail"))
        '<tag><subtag>text</subtag>tail</tag>'

    Here's a somewhat larger example; this shows how to generate HTML
    documents, using a mix of prepared factory functions for inline elements,
    nested ``E.tag`` calls, and embedded XHTML fragments::

        # some common inline elements
        A = E.a
        I = E.i
        B = E.b

        def CLASS(v):
            # helper function, 'class' is a reserved word
            return {'class': v}

        page = (
            E.html(
                E.head(
                    E.title("This is a sample document")
                ),
                E.body(
                    E.h1("Hello!", CLASS("title")),
                    E.p("This is a paragraph with ", B("bold"), " text in it!"),
                    E.p("This is another paragraph, with a ",
                        A("link", href="http://www.python.org"), "."),
                    E.p("Here are some reservered characters: <spam&egg>."),
                    ET.XML("<p>And finally, here is an embedded XHTML fragment.</p>"),
                )
            )
        )

        print ET.tostring(page)

    Here's a prettyprinted version of the output from the above script::

        <html>
          <head>
            <title>This is a sample document</title>
          </head>
          <body>
            <h1 class="title">Hello!</h1>
            <p>This is a paragraph with <b>bold</b> text in it!</p>
            <p>This is another paragraph, with <a href="http://www.python.org">link</a>.</p>
            <p>Here are some reservered characters: &lt;spam&amp;egg&gt;.</p>
            <p>And finally, here is an embedded XHTML fragment.</p>
          </body>
        </html>

    For namespace support, you can pass a namespace map (``nsmap``)
    and/or a specific target ``namespace`` to the ElementMaker class::

    >>> E = ElementMaker(namespace="http://my.ns/")
    >>> print(ET.tostring( E.test ))
    <test xmlns="http://my.ns/"/>

    >>> E = ElementMaker(namespace="http://my.ns/", nsmap={'p':'http://my.ns/'})
    >>> print(ET.tostring( E.test ))
    <p:test xmlns:p="http://my.ns/"/>
    cs|dk	r d|d|_n	d|_|rAt|�|_n	d|_|dk	rtt|�sht�||_ntj|_�r��j	��ni�d�}t
�kr�|�t
<nt�kr�|�t<n�fd�}t�kr�|�t<n�|_dS(Nt{t}cSsPy"|djpd||d_Wn'tk
rK|jp>d||_nXdS(Ni����t(ttailt
IndexErrorttext(telemtitem((s2/usr/lib64/python2.7/site-packages/lxml/builder.pytadd_text�s"
csc|j}xS|j�D]E\}}t|t�r>|||<q�t|�d|�||<qWdS(N(tattribtitemst
isinstancet
basestringttypetNone(RRRtktv(ttypemap(s2/usr/lib64/python2.7/site-packages/lxml/builder.pytadd_dict�s
	
(
Rt
_namespacetdictt_nsmapR	tAssertionErrort_makeelementtETtElementtcopytstrtunicodet_typemap(tselfRt	namespacetnsmaptmakeelementRR((Rs2/usr/lib64/python2.7/site-packages/lxml/builder.pyt__init__�s,			


c
Ose|jj}|jdk	r;|ddkr;|j|}n|j|d|j�}|ro|t�||�nx�|D]�}t|�r�|�}n|t|��}|dkr,t	j
|�r�|j|�qvnxUt|�jD]"}||�}|dk	r�Pq�q�Wt
dt|�j|f��n|||�}	|	rv|t|	��||	�qvqvW|S(NiRR+sbad argument type: %s(%r)(R(tgetRRR"R RR	RR#t	iselementtappendt__mro__t	TypeErrort__name__(
R)RtchildrenRR.RRtttbasetypeR((s2/usr/lib64/python2.7/site-packages/lxml/builder.pyR�s0

 cCs
t||�S(N(R(R)R((s2/usr/lib64/python2.7/site-packages/lxml/builder.pyt__getattr__�sN(R3t
__module__t__doc__RR-RR7(((s2/usr/lib64/python2.7/site-packages/lxml/builder.pyR
Cs
W.	(R9t
lxml.etreetetreeR#t	functoolsRtImportErrorR	t	NameErrorRR&R'tobjectR
tE(((s2/usr/lib64/python2.7/site-packages/lxml/builder.pyt<module>&s&







�

Anon7 - 2021