1
0

update a few scripts

This commit is contained in:
ThomasV
2013-10-06 12:28:45 +02:00
parent 33b41f22fe
commit 66f224eab4
10 changed files with 66 additions and 119 deletions

View File

@@ -1,7 +1,6 @@
#!/usr/bin/env python
import sys, time
from electrum import Interface
import sys, time, electrum
try:
addr = sys.argv[1]
@@ -9,18 +8,19 @@ except:
print "usage: watch_address <bitcoin_address>"
sys.exit(1)
i = Interface()
i.start()
i.send([('blockchain.address.subscribe',[addr])] )
time.sleep(1)
# 1. start the interface and wait for connection
interface = electrum.Interface('electrum.no-ip.org:50002:s')
interface.start(wait = True)
if not interface.is_connected:
print "not connected"
exit()
# 2. send the subscription
callback = lambda _,result: electrum.print_json(result.get('result'))
interface.send([('blockchain.address.subscribe',[addr])], callback)
# 3. wait for results
while True:
r = i.get_response()
method = r.get('method')
if method == 'blockchain.address.subscribe':
i.send([('blockchain.address.get_history',[addr])])
elif method == 'blockchain.address.get_history':
for line in r.get('result'):
print line
print "---"
time.sleep(1)