This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/whois.py
neersighted 79b4f15b45 pep8
2012-02-28 21:58:38 -08:00

43 lines
1 KiB
Python
Executable file

from util import pywhois, hook
@hook.command
def whois(inp, say=None):
".whois <domain> -- Look up ownership infomation for <domain>"
try:
w = pywhois.whois(inp)
except:
return "Failed to check domain info. This domain may not exist."
print w
try:
domain_name = w.domain_name[0]
except IndexError, e:
domain_name = "None"
try:
expiration_date = w.expiration_date[0]
except IndexError, e:
expiration_date = "None"
try:
creation_date = w.creation_date[0]
except IndexError, e:
creation_date = "None"
try:
registrant_email = w.emails[0]
except:
registrant_email = "None"
try:
administrative_email = w.emails[1]
except:
administrative_email = "None"
say("Domain recognised! %s was registered on \x02%s\x02 and will "\
"expire on \x02%s\x02" % (domain_name, creation_date, expiration_date))
say("Registrant email: %s "\
"Administrative email: %s" % (registrant_email, administrative_email))