# encoding: utf-8
# module lxml.etree
# from D:\project\A_Board\.venv\Lib\site-packages\lxml\etree.cp313-win_amd64.pyd
# by generator 1.147
""" The ``lxml.etree`` module implements the extended ElementTree API for XML. """

# imports
import builtins as __builtins__ # <module 'builtins' (built-in)>
import abc as __abc
import typing as __typing


from .FallbackElementClassLookup import FallbackElementClassLookup

class ElementNamespaceClassLookup(FallbackElementClassLookup):
    """
    ElementNamespaceClassLookup(self, fallback=None)
    
        Element class lookup scheme that searches the Element class in the
        Namespace registry.
    
        Usage:
    
        >>> lookup = ElementNamespaceClassLookup()
        >>> ns_elements = lookup.get_namespace("http://schema.org/Movie")
    
        >>> @ns_elements
        ... class movie(ElementBase):
        ...     "Element implementation for 'movie' tag (using class name) in schema namespace."
    
        >>> @ns_elements("movie")
        ... class MovieElement(ElementBase):
        ...     "Element implementation for 'movie' tag (explicit tag name) in schema namespace."
    """
    def get_namespace(self, ns_uri): # real signature unknown; restored from __doc__
        """
        get_namespace(self, ns_uri)
        
                Retrieve the namespace object associated with the given URI.
                Pass None for the empty namespace.
        
                Creates a new namespace object if it does not yet exist.
        """
        pass

    def __init__(self, fallback=None): # real signature unknown; restored from __doc__
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    __pyx_vtable__ = None # (!) real value is '<capsule object NULL at 0x000001F0E7C7BBA0>'


