An api wrapper for btc.com block explorer api
Project description
bp-btc-com
A python 3 api wrapper for btc.com block explorer. Forked from psqnt/btc-com
docs: https://github.com/qlbnb/btc-com/blob/master/docs.md
api docs: https://btc.com/api-doc
block explorer: https://btc.com/block
Install
pip install bp-btc-com
must be python3 so if not in a python3 virtualenv use
pip3 install bp-btc-com
Usage
import datetime
from bp_btc_com.explorer import Explorer
from time import sleep
sleep_time = .5 # don't overstep rate limits
# get latest block
print(Explorer("btc").get_block())
sleep(sleep_time)
print(Explorer("bch").get_block())
sleep(sleep_time)
print(Explorer("bsv").get_block())
Examples
https://github.com/qlbnb/btc-com/blob/master/examples.py
Common Issues
API changes may break the sdk. Please refer to the official btc.com api documentation and update accordingly.
'https://chain.api.btc.com/v3/'
'https://bch-chain.api.btc.com/v3/'
'https://bsv-chain.api.btc.com/v3/'
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
bp-btc-com-0.0.5.tar.gz
(4.4 kB
view hashes)
Built Distribution
Close
Hashes for bp_btc_com-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b38b3a105f974a698de9547ba8cc3ebb4c57fd22d8b68129c066ca4e0fce3484 |
|
MD5 | 82cac6745de631dfc60a1cbc6213e51f |
|
BLAKE2b-256 | 758e3e4f9de945aab004b981978082b3fe3722172d457d958efef6a559f992eb |