Returns a copy of the current response.
(self)
| 88 | webbrowser.open(url) |
| 89 | |
| 90 | def get_response(self): |
| 91 | """Returns a copy of the current response.""" |
| 92 | return addinfourl( |
| 93 | BytesIO(self.data), self._response.info(), self._response.geturl() |
| 94 | ) |
| 95 | |
| 96 | def get_soup(self): |
| 97 | """Returns beautiful soup of the current document.""" |
no outgoing calls
no test coverage detected