Skip to main content

Fake Information Generator using Python

 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 Faker
fake = 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 Rivera
Fake DOB: 2008-11-22
Fake Contry: Reunion
Fake Password: jib35Wqno@
Fake Address: 812 Estrada Fields Suite 299
Tylerstad, VA 88019
Fake zipcode: 67747
Fake Email: crystalchapman@example.com
Fake Credit Card Details: VISA 13 digit
Donald Logan
4432345007406 06/24
CVC: 284
Fake IPv4: 217.211.203.113
Fake 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

Popular posts from this blog

Makefile

 You may have seen file named Makefile or you may have type command like make, make install. so what is this file Makefile and what are this command. let's discuss about it.

Products Which I like

Induction Buy now Induction Buy now

Pascal's Triangle

 Pascal's Triangle Introduction In mathematics, Pascal’s triangle is triangular array of binomial coefficient. below you can see how it looks like… 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 How to Build it? First of all start with “1” and second rows as “1 1” then we can clearly see every element in next rows(except 1) if sum of two elements from above row. (i.e, 1+1=2, 1+2=3, 1+3=4) and with this rules we can create pascal’s triangle of n rows. Below is visual of how it will look like, Formula let’s take 0th row as first row and 0th column as first column, so we can get each value using formula where n is row number and k is column number. so for finding 1st(0 indexed) element in 2nd row we can write 2C1 which will give 2. There is one another technique, in which we need to solve (x + y)^n for nth row, if we solve (x +y)² then we will get 2nd row as coefficient of x and y in this solved formula which is x² + 2xy + y² . coefficients are (...