Skip to main content

A simple Python wrapper for Bitcoin JSON-RPC API

Project description

pybitcoin

A simple Python wrapper for Bitcoin JSON-RPC API.

Installation

pip install bitcaviar

Usage

You should pass your bitcoin-cli directory and where you have the blockchain stored to each method.

from bitcaviar import config

bitcoin = config.Bitcoin(
    cli_dir='your/dir/to/bitcoin-cli', 
    data_dir='/where/is/the/blockchain'
)

Example 1

Get the number of blocks in the blockchain

from bitcaviar import config
from bitcaviar import blockchain


def main():
    bitcoin = config.Bitcoin(
        cli_dir='bitcoin-cli', 
        data_dir='/Users/dennis/Bitcoin'
    )
    
    block_count = blockchain.get_block_count(bitcoin=bitcoin)

    print(block_count)


if __name__ == '__main__':
    main()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bitcaviar-0.0.2.tar.gz (6.3 kB view hashes)

Uploaded Source

Built Distribution

bitcaviar-0.0.2-py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page