I\'m learning random module of python. And I know it generates pseudo random number. Which its core idea is to use a high-frequency clock as a seed and then use a function t
Truly random numbers can be generated from
https://pypi.python.org/pypi/quantumrandom/
pip install quantumrandom
Currently you are limited to blocks of 1024 but with a bit of simple programming and a little bit of time you will be able to extend this limit to a large enough sample for most applications.