Skip to content

Instantly share code, notes, and snippets.

@AdminBlock
AdminBlock / easyrpc.py
Created January 5, 2024 18:56 — forked from laanwj/easyrpc.py
Bitcoind RPC example from Python
'''
Convenience utility for connecting to a bitcoind instance through RPC.
'''
# W.J. van der Laan 2021 :: SPDX-License-Identifier: MIT
import base64
import decimal
from http import HTTPStatus
import http.client
import json
import logging