Metadata-Version: 2.1
Name: bitcoin-requests
Version: 1.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
Description: The simplest Bitcoin Core RPC library for when you're trying to test stuff.
        
        ```bash
        bitcoind -regtest -rpcuser=user -rpcpassword=pass
        ```
        
        ```python
        from bitcoin import BitcoinRPC
        
        rpc = BitcoinRPC('http://127.0.0.1:18443', 'user', 'pass')
        blocks = rpc.generate(101)
        tx = rpc.sendtoaddress(address, 20)
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
