Compruebe si String URL Python
# pip install validators
>>> import validators
>>> validators.url("https://google.com")
True
>>> validators.url("https://google"):
False
Temerold