| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib/python3/dist-packages/cssselect/ |
Upload File : |
"""
CSS Selectors based on XPath
============================
This module supports selecting XML/HTML elements based on CSS selectors.
See the `CSSSelector` class for details.
:copyright: (c) 2007-2012 Ian Bicking and contributors.
See AUTHORS for more details.
:license: BSD, see LICENSE for more details.
"""
from cssselect.parser import (
FunctionalPseudoElement,
Selector,
SelectorError,
SelectorSyntaxError,
parse,
)
from cssselect.xpath import ExpressionError, GenericTranslator, HTMLTranslator
__all__ = (
"ExpressionError",
"FunctionalPseudoElement",
"GenericTranslator",
"HTMLTranslator",
"Selector",
"SelectorError",
"SelectorSyntaxError",
"parse",
)
VERSION = "1.3.0"
__version__ = VERSION