2012-04-30 11:48:19 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
2012-11-15 12:14:29 +01:00
|
|
|
import sys, time
|
2012-10-11 20:10:12 +02:00
|
|
|
from electrum import Interface
|
2012-05-10 14:38:49 +02:00
|
|
|
|
2012-04-30 11:48:19 +02:00
|
|
|
try:
|
|
|
|
|
addr = sys.argv[1]
|
|
|
|
|
except:
|
|
|
|
|
print "usage: watch_address <bitcoin_address>"
|
2012-06-14 21:11:37 +02:00
|
|
|
sys.exit(1)
|
2012-04-30 11:48:19 +02:00
|
|
|
|
2013-08-01 10:59:45 +02:00
|
|
|
i = Interface()
|
2012-04-30 11:48:19 +02:00
|
|
|
i.start()
|
2012-11-15 12:14:29 +01:00
|
|
|
i.send([('blockchain.address.subscribe',[addr])] )
|
|
|
|
|
time.sleep(1)
|
2012-04-30 11:48:19 +02:00
|
|
|
|
|
|
|
|
while True:
|
2012-11-15 12:14:29 +01:00
|
|
|
r = i.get_response()
|
2012-04-30 11:48:19 +02:00
|
|
|
method = r.get('method')
|
|
|
|
|
if method == 'blockchain.address.subscribe':
|
2013-08-01 10:59:45 +02:00
|
|
|
i.send([('blockchain.address.get_history',[addr])])
|
2012-11-15 12:14:29 +01:00
|
|
|
|
2012-04-30 11:48:19 +02:00
|
|
|
elif method == 'blockchain.address.get_history':
|
2013-08-04 21:53:37 +02:00
|
|
|
for line in r.get('result'):
|
|
|
|
|
print line
|
|
|
|
|
print "---"
|