mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-11-23 06:53:02 -05:00
14 lines
560 B
Python
14 lines
560 B
Python
#!/usr/bin/env python2
|
|
# vim:fileencoding=utf-8
|
|
from __future__ import (unicode_literals, division, absolute_import,
|
|
print_function)
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'
|
|
|
|
from css_selectors.parser import parse
|
|
from css_selectors.select import Select, INAPPROPRIATE_PSEUDO_CLASSES
|
|
from css_selectors.errors import SelectorError, SelectorSyntaxError, ExpressionError
|
|
|
|
__all__ = ['parse', 'Select', 'INAPPROPRIATE_PSEUDO_CLASSES', 'SelectorError', 'SelectorSyntaxError', 'ExpressionError']
|