console.py: add tab completion

pull/200/head
moneromooo-monero 5 years ago
parent 04a20cb242
commit 6fd8834d9d
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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')

Loading…
Cancel
Save