import secrets | |
if __name__ == '__main__': | |
secret = secrets.token_bytes(32) | |
print('Seed: \n{}'.format(secret.hex())) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
import secrets | |
if __name__ == '__main__': | |
secret = secrets.token_bytes(32) | |
print('Seed: \n{}'.format(secret.hex())) |