blob: efcdeee6e0b1748af37480e819cd32a93a0e20d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env python
# Copyright (c) 2009 Twisted Matrix Laboratories.
# See LICENSE for details.
import sys
from twisted.names import client
from twisted.internet import reactor
def gotResult(result):
print result
reactor.stop()
def gotFailure(failure):
failure.printTraceback()
reactor.stop()
d = client.getHostByName(sys.argv[1])
d.addCallbacks(gotResult, gotFailure)
reactor.run()
|