this repository contains very good performing and simple (basic) random number generators
philox is a pure python implementation of the Philox counter algorithm which runs just ~ 2.5 times slower than the native python random number generator
see Counter-based random number generator (CBRNG) on Wikipedia
import philox
philox.random()
[optionally call first philox.seed(<seed>)]