Vérifiez si URL de chaîne Python
# pip install validators
>>> import validators
>>> validators.url("https://google.com")
True
>>> validators.url("https://google"):
False
Temerold