test sync
This commit is contained in:
parent
6f6aa28cee
commit
2a9aa2419d
5 changed files with 33 additions and 11 deletions
|
@ -9,11 +9,31 @@ def whois(inp, say=None):
|
|||
|
||||
print w
|
||||
|
||||
domain_name = w.domain_name[0]
|
||||
expiration_date = w.expiration_date[0]
|
||||
creation_date = w.creation_date[0]
|
||||
registrant_email = w.emails[0]
|
||||
administrative_email = w.emails[1]
|
||||
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))
|
||||
|
||||
|
|
Reference in a new issue