The URL password as a string, with URL decoding applied. For example: "a secret"
(self)
| 158 | |
| 159 | @property |
| 160 | def password(self) -> str: |
| 161 | """ |
| 162 | The URL password as a string, with URL decoding applied. |
| 163 | For example: "a secret" |
| 164 | """ |
| 165 | userinfo = self._uri_reference.userinfo |
| 166 | return unquote(userinfo.partition(":")[2]) |
| 167 | |
| 168 | @property |
| 169 | def host(self) -> str: |