Advertisement
Guest User

Untitled

a guest
Oct 31st, 2010
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1.  
  2.  
  3. from twisted.internet import defer, reactor
  4. from twisted.python.failure import Failure
  5. import twisted.names.client
  6.  
  7. def do_lookup(do_lookup):
  8.     d = twisted.names.client.getHostByName(domain)
  9.     d.addBoth(lookup_done)
  10.  
  11. def lookup_done(result):
  12.     print 'result:', result
  13.     reactor.stop()
  14.  
  15. domain = 'twistedmatrix.com'    
  16. reactor.callLater(0, do_lookup, domain)
  17. reactor.run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement