Simple script to extract nodes and transactions related to bitcoin addresses. Uses https://www.walletexplorer.com/ as it's source.
- Clone the repo with
git clone https://github.com/fxleblanc/extract-wallet-explorer - Initialize a python env with
virtualenv -p python env - Install python dependencies with
pip install -r requirements.txt - Launch the script with a single address:
python extract_wallet_explorer.py -a [btc_address] - Launch the script with a file containing multiple addresses:
python extract_wallet_explorer.py -f [file] - You can also specify the depth of crawling with -d or --depth param:
python extract_wallet_explorer.py -f [file] -d [depth]