| |
| """Use the HTMLParser library to parse HTML files that aren't too bad.""" |
| from __future__ import annotations |
|
|
| |
| __license__ = "MIT" |
|
|
| __all__ = [ |
| "HTMLParserTreeBuilder", |
| ] |
|
|
| from html.parser import HTMLParser |
|
|
| from typing import ( |
| Any, |
| Callable, |
| cast, |
| Dict, |
| Iterable, |
| List, |
| Optional, |
| TYPE_CHECKING, |
| Tuple, |
| Type, |
| Union, |
| ) |
|
|
| from bs4.element import ( |
| AttributeDict, |
| CData, |
| Comment, |
| Declaration, |
| Doctype, |
| ProcessingInstruction, |
| ) |
| from bs4.dammit import EntitySubstitution, UnicodeDammit |
|
|
| from bs4.builder import ( |
| DetectsXMLParsedAsHTML, |
| HTML, |
| HTMLTreeBuilder, |
| STRICT, |
| ) |
|
|
| from bs4.exceptions import ParserRejectedMarkup |
|
|
| if TYPE_CHECKING: |
| from bs4 import BeautifulSoup |
| from bs4.element import NavigableString |
| from bs4._typing import ( |
| _Encoding, |
| _Encodings, |
| _RawMarkup, |
| ) |
|
|
| HTMLPARSER = "html.parser" |
|
|
| _DuplicateAttributeHandler = Callable[[Dict[str, str], str, str], None] |
|
|
|
|
| class BeautifulSoupHTMLParser(HTMLParser, DetectsXMLParsedAsHTML): |
| |
| |
| REPLACE: str = "replace" |
|
|
| |
| |
| IGNORE: str = "ignore" |
|
|
| """A subclass of the Python standard library's HTMLParser class, which |
| listens for HTMLParser events and translates them into calls |
| to Beautiful Soup's tree construction API. |
| |
| :param on_duplicate_attribute: A strategy for what to do if a |
| tag includes the same attribute more than once. Accepted |
| values are: REPLACE (replace earlier values with later |
| ones, the default), IGNORE (keep the earliest value |
| encountered), or a callable. A callable must take three |
| arguments: the dictionary of attributes already processed, |
| the name of the duplicate attribute, and the most recent value |
| encountered. |
| """ |
|
|
| def __init__( |
| self, |
| soup: BeautifulSoup, |
| *args: Any, |
| on_duplicate_attribute: Union[str, _DuplicateAttributeHandler] = REPLACE, |
| **kwargs: Any, |
| ): |
| self.soup = soup |
| self.on_duplicate_attribute = on_duplicate_attribute |
| self.attribute_dict_class = soup.builder.attribute_dict_class |
| HTMLParser.__init__(self, *args, **kwargs) |
|
|
| |
| |
| |
| |
| |
| |
| |
| self.already_closed_empty_element = [] |
|
|
| self._initialize_xml_detector() |
|
|
| on_duplicate_attribute: Union[str, _DuplicateAttributeHandler] |
| already_closed_empty_element: List[str] |
| soup: BeautifulSoup |
|
|
| def error(self, message: str) -> None: |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| raise ParserRejectedMarkup(message) |
|
|
| def handle_startendtag( |
| self, tag: str, attrs: List[Tuple[str, Optional[str]]] |
| ) -> None: |
| """Handle an incoming empty-element tag. |
| |
| html.parser only calls this method when the markup looks like |
| <tag/>. |
| """ |
| |
| |
| |
| |
| self.handle_starttag(tag, attrs, handle_empty_element=False) |
| self.handle_endtag(tag) |
|
|
| def handle_starttag( |
| self, |
| tag: str, |
| attrs: List[Tuple[str, Optional[str]]], |
| handle_empty_element: bool = True, |
| ) -> None: |
| """Handle an opening tag, e.g. '<tag>' |
| |
| :param handle_empty_element: True if this tag is known to be |
| an empty-element tag (i.e. there is not expected to be any |
| closing tag). |
| """ |
| |
| attr_dict: AttributeDict = self.attribute_dict_class() |
| for key, value in attrs: |
| |
| |
| if value is None: |
| value = "" |
| if key in attr_dict: |
| |
| |
| |
| on_dupe = self.on_duplicate_attribute |
| if on_dupe == self.IGNORE: |
| pass |
| elif on_dupe in (None, self.REPLACE): |
| attr_dict[key] = value |
| else: |
| on_dupe = cast(_DuplicateAttributeHandler, on_dupe) |
| on_dupe(attr_dict, key, value) |
| else: |
| attr_dict[key] = value |
| |
| sourceline: Optional[int] |
| sourcepos: Optional[int] |
| if self.soup.builder.store_line_numbers: |
| sourceline, sourcepos = self.getpos() |
| else: |
| sourceline = sourcepos = None |
| tagObj = self.soup.handle_starttag( |
| tag, None, None, attr_dict, sourceline=sourceline, sourcepos=sourcepos |
| ) |
| if tagObj is not None and tagObj.is_empty_element and handle_empty_element: |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| self.handle_endtag(tag, check_already_closed=False) |
|
|
| |
| |
| self.already_closed_empty_element.append(tag) |
|
|
| if self._root_tag_name is None: |
| self._root_tag_encountered(tag) |
|
|
| def handle_endtag(self, tag: str, check_already_closed: bool = True) -> None: |
| """Handle a closing tag, e.g. '</tag>' |
| |
| :param tag: A tag name. |
| :param check_already_closed: True if this tag is expected to |
| be the closing portion of an empty-element tag, |
| e.g. '<tag></tag>'. |
| """ |
| |
| if check_already_closed and tag in self.already_closed_empty_element: |
| |
| |
| |
| |
| self.already_closed_empty_element.remove(tag) |
| else: |
| self.soup.handle_endtag(tag) |
|
|
| def handle_data(self, data: str) -> None: |
| """Handle some textual data that shows up between tags.""" |
| self.soup.handle_data(data) |
|
|
| def handle_charref(self, name: str) -> None: |
| """Handle a numeric character reference by converting it to the |
| corresponding Unicode character and treating it as textual |
| data. |
| |
| :param name: Character number, possibly in hexadecimal. |
| """ |
| |
| |
| |
| |
| real_name:int |
| if name.startswith("x"): |
| real_name = int(name.lstrip("x"), 16) |
| elif name.startswith("X"): |
| real_name = int(name.lstrip("X"), 16) |
| else: |
| real_name = int(name) |
|
|
| data, replacement_added = UnicodeDammit.numeric_character_reference(real_name) |
| if replacement_added: |
| self.soup.contains_replacement_characters = True |
| self.handle_data(data) |
|
|
| def handle_entityref(self, name: str) -> None: |
| """Handle a named entity reference by converting it to the |
| corresponding Unicode character(s) and treating it as textual |
| data. |
| |
| :param name: Name of the entity reference. |
| """ |
| character = EntitySubstitution.HTML_ENTITY_TO_CHARACTER.get(name) |
| if character is not None: |
| data = character |
| else: |
| |
| |
| |
| |
| |
| data = "&%s" % name |
| self.handle_data(data) |
|
|
| def handle_comment(self, data: str) -> None: |
| """Handle an HTML comment. |
| |
| :param data: The text of the comment. |
| """ |
| self.soup.endData() |
| self.soup.handle_data(data) |
| self.soup.endData(Comment) |
|
|
| def handle_decl(self, decl: str) -> None: |
| """Handle a DOCTYPE declaration. |
| |
| :param data: The text of the declaration. |
| """ |
| self.soup.endData() |
| decl = decl[len("DOCTYPE ") :] |
| self.soup.handle_data(decl) |
| self.soup.endData(Doctype) |
|
|
| def unknown_decl(self, data: str) -> None: |
| """Handle a declaration of unknown type -- probably a CDATA block. |
| |
| :param data: The text of the declaration. |
| """ |
| cls: Type[NavigableString] |
| if data.upper().startswith("CDATA["): |
| cls = CData |
| data = data[len("CDATA[") :] |
| else: |
| cls = Declaration |
| self.soup.endData() |
| self.soup.handle_data(data) |
| self.soup.endData(cls) |
|
|
| def handle_pi(self, data: str) -> None: |
| """Handle a processing instruction. |
| |
| :param data: The text of the instruction. |
| """ |
| self.soup.endData() |
| self.soup.handle_data(data) |
| self._document_might_be_xml(data) |
| self.soup.endData(ProcessingInstruction) |
|
|
|
|
| class HTMLParserTreeBuilder(HTMLTreeBuilder): |
| """A Beautiful soup `bs4.builder.TreeBuilder` that uses the |
| :py:class:`html.parser.HTMLParser` parser, found in the Python |
| standard library. |
| |
| """ |
|
|
| is_xml: bool = False |
| picklable: bool = True |
| NAME: str = HTMLPARSER |
| features: Iterable[str] = [NAME, HTML, STRICT] |
| parser_args: Tuple[Iterable[Any], Dict[str, Any]] |
|
|
| |
| |
| TRACKS_LINE_NUMBERS: bool = True |
|
|
| def __init__( |
| self, |
| parser_args: Optional[Iterable[Any]] = None, |
| parser_kwargs: Optional[Dict[str, Any]] = None, |
| **kwargs: Any, |
| ): |
| """Constructor. |
| |
| :param parser_args: Positional arguments to pass into |
| the BeautifulSoupHTMLParser constructor, once it's |
| invoked. |
| :param parser_kwargs: Keyword arguments to pass into |
| the BeautifulSoupHTMLParser constructor, once it's |
| invoked. |
| :param kwargs: Keyword arguments for the superclass constructor. |
| """ |
| |
| |
| extra_parser_kwargs = dict() |
| for arg in ("on_duplicate_attribute",): |
| if arg in kwargs: |
| value = kwargs.pop(arg) |
| extra_parser_kwargs[arg] = value |
| super(HTMLParserTreeBuilder, self).__init__(**kwargs) |
| parser_args = parser_args or [] |
| parser_kwargs = parser_kwargs or {} |
| parser_kwargs.update(extra_parser_kwargs) |
| parser_kwargs["convert_charrefs"] = False |
| self.parser_args = (parser_args, parser_kwargs) |
|
|
| def prepare_markup( |
| self, |
| markup: _RawMarkup, |
| user_specified_encoding: Optional[_Encoding] = None, |
| document_declared_encoding: Optional[_Encoding] = None, |
| exclude_encodings: Optional[_Encodings] = None, |
| ) -> Iterable[Tuple[str, Optional[_Encoding], Optional[_Encoding], bool]]: |
| """Run any preliminary steps necessary to make incoming markup |
| acceptable to the parser. |
| |
| :param markup: Some markup -- probably a bytestring. |
| :param user_specified_encoding: The user asked to try this encoding. |
| :param document_declared_encoding: The markup itself claims to be |
| in this encoding. |
| :param exclude_encodings: The user asked _not_ to try any of |
| these encodings. |
| |
| :yield: A series of 4-tuples: (markup, encoding, declared encoding, |
| has undergone character replacement) |
| |
| Each 4-tuple represents a strategy for parsing the document. |
| This TreeBuilder uses Unicode, Dammit to convert the markup |
| into Unicode, so the ``markup`` element of the tuple will |
| always be a string. |
| """ |
| if isinstance(markup, str): |
| |
| yield (markup, None, None, False) |
| return |
|
|
| |
|
|
| known_definite_encodings: List[_Encoding] = [] |
| if user_specified_encoding: |
| |
| |
| |
| |
| known_definite_encodings.append(user_specified_encoding) |
|
|
| user_encodings: List[_Encoding] = [] |
| if document_declared_encoding: |
| |
| |
| user_encodings.append(document_declared_encoding) |
|
|
| dammit = UnicodeDammit( |
| markup, |
| known_definite_encodings=known_definite_encodings, |
| user_encodings=user_encodings, |
| is_html=True, |
| exclude_encodings=exclude_encodings, |
| ) |
|
|
| if dammit.unicode_markup is None: |
| |
| |
| |
| |
| |
| |
| raise ParserRejectedMarkup( |
| "Could not convert input to Unicode, and html.parser will not accept bytestrings." |
| ) |
| else: |
| yield ( |
| dammit.unicode_markup, |
| dammit.original_encoding, |
| dammit.declared_html_encoding, |
| dammit.contains_replacement_characters, |
| ) |
|
|
| def feed(self, markup: _RawMarkup, _parser_class:type[BeautifulSoupHTMLParser] =BeautifulSoupHTMLParser) -> None: |
| """ |
| :param markup: The markup to feed into the parser. |
| :param _parser_class: An HTMLParser subclass to use. This is only intended for use in unit tests. |
| """ |
| args, kwargs = self.parser_args |
|
|
| |
| |
| |
| |
| |
| |
| assert isinstance(markup, str) |
|
|
| |
| |
| |
| assert self.soup is not None |
| parser = _parser_class(self.soup, *args, **kwargs) |
|
|
| try: |
| parser.feed(markup) |
| parser.close() |
| except AssertionError as e: |
| |
| |
| |
| raise ParserRejectedMarkup(e) |
| parser.already_closed_empty_element = [] |
|
|