from Blockthon.Wallet import getBytes, Bytes_To_PublicKey
# generated random bytes without repeat
bytes_str = getBytes()
# Convert Bytes To Public Key (un compress)
public_key = Bytes_To_PublicKey(bytes_str)
Convert Bytes To Public Key Compress
from Blockthon.Wallet import getBytes, Bytes_To_PublicKey
# generated random bytes without repeat
bytes_str = getBytes()
# Convert Bytes To Public Key Compress
public_key = Bytes_To_PublicKey(bytes_str, compress=True)