Created
June 7, 2012 18:30
-
-
Save weppos/2890637 to your computer and use it in GitHub Desktop.
Revisions
-
weppos revised this gist
Jun 7, 2012 . No changes.There are no files selected for viewing
-
weppos created this gist
Jun 7, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ import urllib2 class RoboWhois: def __init__(self, api_key): self.username = api_key self.password = "X" def whois(self, domain): template = "http://api.robowhois.com/whois/%s" passman = urllib2.HTTPPasswordMgrWithDefaultRealm() passman.add_password(None, "http://api.robowhois.com/", self.username, self.password) handler = urllib2.HTTPBasicAuthHandler(passman) opener = urllib2.build_opener(handler) request = urllib2.Request(template % domain) response = opener.open(request) return response.read() # Example usage: # # robowhois = RoboWhois("YOUR_API_KEY") # print robowhois.whois("google.com")