Created
February 26, 2018 01:47
-
-
Save codeadict/2c960aa49dd56d4aefdd3694863f9014 to your computer and use it in GitHub Desktop.
Generating verifiable fake data with faker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from faker import Faker | |
fake = Faker() | |
fake.random.seed(1234) | |
print(fake.name()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment