Created
February 26, 2018 01:39
-
-
Save codeadict/c5f863190271658eca660f7584a6de9d to your computer and use it in GitHub Desktop.
Testing faker planet generator
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 | |
from planet_provider import PlanetProvider | |
fake = Faker() | |
fake = Faker() | |
fake.add_provider(PlanetProvider) | |
print(fake.planet()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment