This module includes simple functions to retrieve and work with the digits of A Million Random Digits with 100,000 Normal Deviates by RAND Corporation.
import randbyrand
# As a list
digits = randbyrand.get_digits()
# As a numpy array
digits = randbyrand.get_digits("numpy")
# As a Pandas DataFrame
digits = randbyrand.get_digits("pandas")
import randbyrand
random_digit = randbyrand.rand_digit().__next__()