Last active
July 1, 2020 16:00
-
-
Save checchia/0add639401f8710d6b7ae21acc57b764 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, os, tldextract | |
def extrai_sld(dominio): | |
sld = tldextract.extract(dominio) | |
marca = sld.domain | |
return marca | |
def check_decimal(marca): | |
if marca.isdecimal() is False: | |
if not "-" in marca: | |
return "OK" | |
return "nok" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment