bitcoin
Python script to create your own seed

DISCLAIMER: THIS IS ONLY FOR LEARNING PURPOSES! DON’T USE FOR YOUR ACTUAL WALLET
I developed a python script that generates a seed with your own entropy without relying on a computer randomness.
The script needs the entropy from you so needs a sequence of 0 e 1 (bits) with a 256 length.
How to get it? Simply flip a coin 256 times (head is 1, tail is 0)
The same sequence will generate always the same seed, so you are relying only on the randomness of you coin and not on a computer RNG randomness.
This is the link to the GitHub repo: https://github.com/91DarioDev/GYOES-generate-your-own-entropy-seed
DISCLAIMER: THIS IS ONLY FOR LEARNING PURPOSES! DON’T USE FOR YOUR ACTUAL WALLET
I im learning python so i undertand a bit of your code, and it look nice!