aboutsummaryrefslogtreecommitdiff
path: root/utils/python-rpc/console.py (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-04-11console.py: can now connect to several daemons/walletsmoneromooo-monero1-53/+65
Also throw exceptions instead of print+exit, since that makes the error print last, below the python stack trace, where it's much less easy to miss it.
2019-04-11console.py: add tab completionmoneromooo-monero1-0/+9
2019-04-11console.py: support connecting to any host, not just 127.0.0.1moneromooo-monero1-5/+23
2019-03-23python-rpc: add console.pymoneromooo-monero1-0/+49
It allows one to connect to a running daemon or wallet, and use its RPC API from python. Usage: python -i console.py <port> It will detect whether it's talking to a daemon or wallet and initialize itself accordingly.