Faker

Generate random data on the fly

from faker import Factory
fake = Factory.create('fr_FR') # Localized names

for _ in range(0, 10):
   print fake.first_name()
   print fake.last_name()

More elaborate example, with custom providers