The :py:mod:`urandom` module allows you to generate random numbers. Please note that this module is currently only *seeded* with the TRNG and uses pseudo random numbers for later invocations.
**Example**:
.. code-block:: python
import urandom
print(urandom.random())
.. py:function:: urandom.getrandbits(num)
Return random bits.
:param int num: Number of random bits to generate (max. 32)
:returns: An integer with numin bit randomly set.
.. py:function:: urandom.seed(seed)
:param int seed: Integer to seed the random number generator with.