(self)
| 650 | |
| 651 | @property |
| 652 | def html(self) -> HTML: |
| 653 | if not self._html: |
| 654 | self._html = HTML(session=self.session, url=self.url, html=self.content, default_encoding=self.encoding) |
| 655 | |
| 656 | return self._html |
| 657 | |
| 658 | @classmethod |
| 659 | def _from_response(cls, response, session: Union['HTMLSession', 'AsyncHTMLSession']): |