Reconstructs the full URL for this request.
(self)
| 579 | return self._cookies |
| 580 | |
| 581 | def full_url(self) -> str: |
| 582 | """Reconstructs the full URL for this request.""" |
| 583 | return self.protocol + "://" + self.host + self.uri # type: ignore[operator] |
| 584 | |
| 585 | def request_time(self) -> float: |
| 586 | """Returns the amount of time it took for this request to execute.""" |
no outgoing calls