Hey Everyone , Today i'm gonna cover the topic fake information generator using python . and we'll see how to generate fake name , number and whole identity of fake human. Then let's get started ...
Python has library named Faker which help us to generate fake information, use pip or pip3 to install it
pip install Faker
Now create fakeInfo.py file open it and write code:
from faker import Fakerfake = Faker()print("Fake Name:",fake.name())print("Fake DOB:",fake.date_of_birth())print("Fake Contry:",fake.country())print("Fake Password:",fake.password())print("Fake Address:",fake.address())print("Fake zipcode:",fake.zipcode())print("Fake Email:",fake.ascii_safe_email())print("Fake Credit Card Details:",fake.credit_card_full())print("Fake IPv4:",fake.ipv4())print("Fake CryptoCurrency Name:",fake.cryptocurrency_name())
Output:
Fake Name: Jason RiveraFake DOB: 2008-11-22Fake Contry: ReunionFake Password: jib35Wqno@Fake Address: 812 Estrada Fields Suite 299Tylerstad, VA 88019Fake zipcode: 67747Fake Email: crystalchapman@example.comFake Credit Card Details: VISA 13 digitDonald Logan4432345007406 06/24CVC: 284Fake IPv4: 217.211.203.113Fake CryptoCurrency Name: Bytecoin
So this how you can generate fake info..
If you want to know more types of fake information then ,
print(dir(Faker()))
Let me know your thoughts in comment box
Thank You 😊😊
Comments
Post a Comment