File: __init__.py

package info (click to toggle)
python-tinycss2 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 568 kB
  • sloc: python: 1,678; makefile: 19
file content (10 lines) | stat: -rw-r--r-- 467 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from pathlib import Path

from .bytes import parse_stylesheet_bytes  # noqa
from .parser import (parse_declaration_list, parse_one_component_value,  # noqa
                     parse_one_declaration, parse_one_rule, parse_rule_list,
                     parse_stylesheet)
from .serializer import serialize, serialize_identifier  # noqa
from .tokenizer import parse_component_value_list  # noqa

VERSION = __version__ = (Path(__file__).parent / 'VERSION').read_text()