Return the query parameter value for `key` from the current URL. Raises: KeyError: If `key` does not exist in the parsed query parameters.
(self, key: str)
| 72 | self.url = None |
| 73 | |
| 74 | def get(self, key: str) -> str: |
| 75 | """ |
| 76 | Return the query parameter value for `key` from the current URL. |
| 77 | |
| 78 | Raises: |
| 79 | KeyError: If `key` does not exist in the parsed query parameters. |
| 80 | """ |
| 81 | self._data = self.to_dict |
| 82 | return self._data[key] |
| 83 | |
| 84 | def post(self, kwargs: dict): |
| 85 | """ |
no outgoing calls