OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
cssselect
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:36:16 AM
rwxr-xr-x
📄
__init__.py
639 bytes
06/15/2016 04:26:47 PM
rw-r--r--
📁
__pycache__
-
03/16/2023 11:25:56 AM
rwxr-xr-x
📄
parser.py
23.15 KB
06/15/2016 04:26:47 PM
rw-r--r--
📄
xpath.py
24.45 KB
06/15/2016 04:26:47 PM
rw-r--r--
Editing: __init__.py
Close
# -*- coding: utf-8 -*- """ 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 (parse, Selector, FunctionalPseudoElement, SelectorError, SelectorSyntaxError) from cssselect.xpath import GenericTranslator, HTMLTranslator, ExpressionError VERSION = '0.9.2' __version__ = VERSION