Skip to content
This repository has been archived by the owner on Mar 12, 2022. It is now read-only.

Latest commit

 

History

History
16 lines (13 loc) · 466 Bytes

README.markdown

File metadata and controls

16 lines (13 loc) · 466 Bytes

Faker

Faker makes fake data. It looks like this:

>>> import faker
>>> faker.name.name()
'Gregory Spinka III'
>>> faker.internet.email()
'[email protected]'
>>> faker.company.name()
'Barton, Heller and Considine'
>>> faker.address.street_address()
'106810 Leannon Drive'

If you are a Django developer, you might also be interested in django-poseur, which provides some higher-level tools for Django built on this library.