vote up 1 vote down star
1

Hey,

I'm trying to get a webservice up and running that actually requires to check whois databases. What I'm doing right now is ugly and I'd like to avoid it as much as I can: I call gwhois command and parse its output. Ugly.

I did some search to try to find a pythonic way to do this task. Generally I got quite much nothing - this old discussion list link has a way to check if domain exist. Quite not what I was looking for... But still, it was best anwser Google gave me - everything else is just a bunch of unanwsered questions.

Any of you have succeeded to get some method up and running? I'd very much appreciate some tips, or should I just do it the opensource-way, sit down and code something by myself? :)

flag

4 Answers

vote up 2 vote down check

There's nothing wrong with using a command line utility to do what you want. If you put a nice wrapper around the service, you can implement the internals however you want! For example:

class Whois(object):
    _whois_by_query_cache = {}

    def __init__(self, query):
        """Initializes the instance variables to defaults. See :meth:`lookup`
        for details on how to submit the query."""
        self.query = query
        self.domain = None
        # ... other fields.

    def lookup(self):
        """Submits the `whois` query and stores results internally."""
        # ... implementation

Now, whether or not you roll your own using urllib, wrap around a command line utility (like you're doing), or import a third party library and use that (like you're saying), this interface stays the same.

This approach is generally not considered ugly at all -- sometimes command utilities do what you want and you should be able to leverage them. If speed ends up being a bottleneck, your abstraction makes the process of switching to a native Python implementation transparent to your client code.

Practicality beats purity -- that's what's Pythonic. :)

link|flag
Yeah, I know. But, using too many of system tools and building wrappers around them makes it harder to, lets say, migrate application to other system... But I guess I'll stick to what I got now, if it works ;) – kender Sep 11 '08 at 19:50
With a good abstraction barrier you can implement it whenever it's convenient! "Now is better than never, Although never is often better than right now." :) – cdleary Sep 11 '08 at 19:59
vote up 1 vote down

I don't know if gwhois does something special with the server output; however, you can plainly connect to the whois server on port whois (43), send your query, read all the data in the reply and parse them. To make life a little easier, you could use the telnetlib.Telnet class (even if the whois protocol is much simpler than the telnet protocol) instead of plain sockets.

The tricky parts:

  • which whois server will you ask? RIPE, ARIN, APNIC, LACNIC, AFRINIC, JPNIC, VERIO etc LACNIC could be a useful fallback, since they tend to reply with useful data to requests outside of their domain.
  • what are the exact options and arguments for each whois server? some offer help, others don't. In general, plain domain names work without any special options.
link|flag
real problem is not in the querying of servers- but parsing their outputs. sadly, what they return the format changes a lot between servers. One of lines, expiration time, can look like: Expiration Date:05-Sep-2009 15:24:49 UTC or Expires on: 26-Dec-14 or, some servers dont give that at all. – kender Sep 29 '08 at 10:16
They're both part of the problem. In my case, it was hard enough to find the correct (authoritative) whois server in every case. Parsing the data wasn't as hard, since we were interested basically in parent subnets, so with a little trial&error we were done. Can't provide code, though, sorry. – ΤΖΩΤΖΙΟΥ Sep 29 '08 at 15:22
vote up 0 vote down

Another way to do it is to use urllib2 module to parse some other page's whois service (many sites like that exist). But that seems like even more of a hack that what you do now, and would give you a dependency on whatever whois site you chose, which is bad.

I hate to say it, but unless you want to re-implement whois in your program (which would be re-inventing the wheel), running whois on the OS and parsing the output (ie what you are doing now) seems like the right way to do it.

link|flag
vote up 0 vote down

Parsing another webpage woulnd't be as bad (assuming their html woulnd't be very bad), but it would actually tie me to them - if they're down, I'm down :)

Actually I found some old project on sourceforge: rwhois.py. What scares me a bit is that their last update is from 2003. But, it might seem as a good place to start reimplementation of what I do right now... Well, I felt obligued to post the link to this project anyway, just for further reference.

link|flag
Well, what has really changed about whois in the last 5 years. I would venture to guess "not much". I still think you are re-inventing the wheel. My ideal answer is: use what is working for you now unless you perceive a real problem with it. – Justin Standard Sep 8 '08 at 21:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.