├── .bandit ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── contributors.md ├── examples ├── test_daemon_rpc.py ├── test_daemon_rpc_params.py ├── test_rpc.py └── test_rpc_batch.py ├── jsonrpc ├── __init__.py ├── authproxy.py ├── json.py └── proxy.py ├── monerorpc ├── .gitignore ├── __init__.py └── authproxy.py ├── requirements.in ├── requirements.txt ├── setup.py ├── tests.py ├── tox.ini └── update_requirements.sh /.bandit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/.bandit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/README.md -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/contributors.md -------------------------------------------------------------------------------- /examples/test_daemon_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/examples/test_daemon_rpc.py -------------------------------------------------------------------------------- /examples/test_daemon_rpc_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/examples/test_daemon_rpc_params.py -------------------------------------------------------------------------------- /examples/test_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/examples/test_rpc.py -------------------------------------------------------------------------------- /examples/test_rpc_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/examples/test_rpc_batch.py -------------------------------------------------------------------------------- /jsonrpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/jsonrpc/__init__.py -------------------------------------------------------------------------------- /jsonrpc/authproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/jsonrpc/authproxy.py -------------------------------------------------------------------------------- /jsonrpc/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/jsonrpc/json.py -------------------------------------------------------------------------------- /jsonrpc/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/jsonrpc/proxy.py -------------------------------------------------------------------------------- /monerorpc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /monerorpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monerorpc/authproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/monerorpc/authproxy.py -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/tox.ini -------------------------------------------------------------------------------- /update_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-ecosystem/python-monerorpc/HEAD/update_requirements.sh --------------------------------------------------------------------------------