diff --git a/Shahper/Fake_Data_Generator b/Shahper/Fake_Data_Generator new file mode 100644 index 00000000..9ecc117a --- /dev/null +++ b/Shahper/Fake_Data_Generator @@ -0,0 +1,11 @@ +## first install Faker from your terminal by using this command -> pip install Faker + +from faker import Faker +fake = Faker() +print(fake.name())x +print(fake.email()) +print(fake.country()) +print(fake.profile()) + +#you can also generate more fake/samople data by checking more methods form here 👇🏽 +website link : https://faker.readthedocs.io/en/master/index.html