Faker

Tutorial here:
https://semaphoreci.com/community/tutorials/generating-fake-data-for-python-unit-tests-with-faker

1
2
3
4
5
6
pip3 install faker # as always

from faker import Faker
f = Faker()
f.text()
dir(f) # check it out

For me, I think it would be a wonderful tool for generating random words or names or addresses or anything for testing or other purposes. The random module is limited in some way.