Metadata-Version: 2.1
Name: bitcoin-requests
Version: 2.0.0
Summary: Simplest Bitcoin Core RPC interface.
Home-page: https://github.com/fiatjaf/bitcoin-requests
Author: fiatjaf
Author-email: fiatjaf@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: requests

The simplest Bitcoin Core RPC library for when you just want to talk to Bitcoin Core.

## Usage

If you started Bitcoin Core like this:

```bash
bitcoind -regtest -rpcuser=user -rpcpassword=pass
```

Instantiate the `bitcoin_requests` RPC client like this:

```python
from bitcoin_requests import BitcoinRPC

rpc = BitcoinRPC('http://127.0.0.1:18443', 'user', 'pass')
blocks = rpc.generate(101)
tx = rpc.sendtoaddress(address, 20)
```

## Installation

```
pip install bitcoin-requests
```


