Sep-16-2018, 02:13 PM
Hello,
I have some code like this
Now i have a question , how to valid the Subdomain ? e.g
and how to input manual the link website from
Thank you in advace,
I hope anybody can help me.
Sorry for my bad english
I have some code like this
import re, urllib GRUBER_URLINTEXT_PAT = re.compile("(https?://)([^:^/]*)(:\\d*)?(.*)?") for line in urllib.urlopen("https://pastebin.com/raw/hvGXKp72").readlines(): print [ str(mgroups[1]).replace('\r\n','') for mgroups in GRUBER_URLINTEXT_PAT.findall(line) ]this code to read
example.comonly without HTTP,HTTPS & WWW
Now i have a question , how to valid the Subdomain ? e.g
subdomain.example.comis readable with the code?
and how to input manual the link website from
("https://pastebin.com/raw/hvGXKp72")? e.g
Please Input Your Website :then input the website manually.
Thank you in advace,
I hope anybody can help me.
Sorry for my bad english

