Bitcoin Wallet Python
#pip install bitcoin
from bitcoin import *
#Generate new private key
PrivateKey = random_key()
#Generate new public key from private key
PublicKey = privtopub(PrivateKey)
#Create new address from public key
addr = pubtoaddr(PublicKey)
print("My Public Address: " + addr)
print("My Private Address: " + PrivateKey)
gocrazygh