File: __init__.py

package info (click to toggle)
html-text 0.7.1-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 292 kB
  • sloc: python: 536; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
__version__ = "0.7.1"

from .html_text import (
    DOUBLE_NEWLINE_TAGS,
    NEWLINE_TAGS,
    cleaned_selector,
    cleaner,
    etree_to_text,
    extract_text,
    parse_html,
    selector_to_text,
)

__all__ = (
    "DOUBLE_NEWLINE_TAGS",
    "NEWLINE_TAGS",
    "cleaned_selector",
    "cleaner",
    "etree_to_text",
    "extract_text",
    "parse_html",
    "selector_to_text",
)