(url: str)
| 489 | |
| 490 | @staticmethod |
| 491 | def get_parameters_of_url(url: str) -> dict[str, list]: |
| 492 | query = urllib.parse.urlparse(url)[4] |
| 493 | return urllib.parse.parse_qs(query) |
| 494 | |
| 495 | @staticmethod |
| 496 | def add_parameters_to_url( |
no outgoing calls
no test coverage detected