__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
"""
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
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 760 B | 0644 |
|
| parser.py | File | 32.49 KB | 0644 |
|
| py.typed | File | 0 B | 0644 |
|
| xpath.py | File | 32.55 KB | 0644 |
|