1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-01 04:58:59 +00:00
bitcoinbook/code/rpc_example.py

11 lines
267 B
Python

from bitcoin.rpc import RawProxy
# Create a connection to local Bitcoin Core node
p = RawProxy()
# Run the getblockchaininfo command, store the resulting data in info
info = p.getblockchaininfo()
# Retrieve the 'blocks' element from the info
print(info['blocks'])