Skip to content

Instantly share code, notes, and snippets.

@checchia
Last active July 1, 2020 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save checchia/0add639401f8710d6b7ae21acc57b764 to your computer and use it in GitHub Desktop.
Save checchia/0add639401f8710d6b7ae21acc57b764 to your computer and use it in GitHub Desktop.
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