Reconstructs the full URL for this request.
(self)
| 407 | return self._cookies |
| 408 | |
| 409 | def full_url(self) -> str: |
| 410 | """Reconstructs the full URL for this request.""" |
| 411 | return self.protocol + "://" + self.host + self.uri # type: ignore[operator] |
| 412 | |
| 413 | def request_time(self) -> float: |
| 414 | """Returns the amount of time it took for this request to execute.""" |
no outgoing calls