### What problem does this PR solve? ### Type of change - [x] Performance Improvementtags/v0.14.0
| def is_valid_url(url: str) -> bool: | def is_valid_url(url: str) -> bool: | ||||
| return bool(re.match(r"(https?|ftp|file)://[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]", url)) | |||||
| return bool(re.match(r"(https?)://[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]", url)) |