Post
Topic
Board Development & Technical Discussion
Re: How to get Public Key from Wallet Address
by
NotATether
on 05/06/2021, 21:36:15 UTC
for address in addresses:
    if address == '':
        continue

    response = requests.get('https://blockchain.info/q/pubkeyaddr/' + address)
~

This is going to get you throttled or blocked by blockchain.info VERY quickly unless you place a time.sleep() after the request is made.