aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rwxr-xr-xutils/python-rpc/console.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/python-rpc/console.py b/utils/python-rpc/console.py
index 444a9cc59..1d831c711 100755
--- a/utils/python-rpc/console.py
+++ b/utils/python-rpc/console.py
@@ -63,5 +63,14 @@ if 'status' in res:
else:
rpc = wallet.Wallet(port=port)
+# add tab completion if we can: https://stackoverflow.com/questions/246725
+try:
+ import readline
+except:
+ pass
+else:
+ import rlcompleter
+ readline.parse_and_bind('tab: complete')
+
print('Connected to %s RPC on port %u' % ('daemon' if 'status' in res else 'wallet', port))
print('The \'rpc\' object may now be used to use the API')