Bitcoin Forum

Economy => Web Wallets => Topic started by: Dmc1 on January 11, 2016, 07:45:58 PM



Title: Download .aes.json from Blockchain.info using only identifier
Post by: Dmc1 on January 11, 2016, 07:45:58 PM
I want to download my .aes.json file from blockchain.info using my identifier

Is it still possible to do this? If it is I would like some help, Here is what I found related in a previoius post:



thought I might be able to help out a little bit here...
To download the (encrypted) wallet from blockchain.info, run this from the command line (Linux or Windows, but for Windows you need to install Python 2.x first).
Code:
python -c "import urllib2,json;f=urllib2.urlopen('https://blockchain.info/wallet/9bb4c672-563e-4806-9012-a3e8f86a0eca?format=json');print json.loads(f.read())['payload']" > wallet.json.aes
(Obviously you'll need to change the UUID to match yours first.)




Cant seem to get this to work for me though, any other methods (like a direct download from blockchain.info?)

Thanks in advance