diff options
Diffstat (limited to 'domaincheck')
-rwxr-xr-x | domaincheck | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/domaincheck b/domaincheck new file mode 100755 index 0000000..7105eea --- /dev/null +++ b/domaincheck @@ -0,0 +1,8 @@ +#! /usr/bin/env python3 + +import argparse +import urllib.request + +for d in domains: + deetz = pythonwhois.get_whois(d) + print(deetz) |