0
1
I am currently thinking of doing a research project on Bitcoins. But I want to download the list of all transactions of bitcoins. I was wondering what are the ways to do this? I believe, I can scrape if I'm not wrong but is there a better and a faster way to do this?
How do you recommend I run a full node? I am sorry, I am completely new to blockchain/bitcoin etc. I do know Python well though so any guidance would be appreciated – bawa – 2018-02-23T10:56:18.427
Downloaded bitcoin core. Downloading all the transactions. Could you actually guide me, how I could import all of it (once its downloaded) into a sort of a csv file or maybe in a data frame in python? – bawa – 2018-02-23T11:09:14.613
1
You can use the JSON-RPC interface to connect to Bitcoin Core and send commands that fetch the blockchain data for you. Then you can put that into whatever format you want and handle it however you want. This library may be helpful to you: https://github.com/jgarzik/python-bitcoinrpc
– Andrew Chow – 2018-02-23T15:57:10.650