(str: str)
| 162 | |
| 163 | def parse(self, root: html.HtmlElement, keep: list[str], obs: list[str], parent_chain: bool=False, get_new_label: bool=False) -> dict[str]: |
| 164 | def get_text(str: str) -> str: |
| 165 | return '' if str is None else str.strip()[:500] |
| 166 | |
| 167 | def check_attr(attr: str, node: html.HtmlElement) -> bool: |
| 168 | tag = node.tag |