Skip to main content

Generate all possible phone numbers with Python | Generates Crores of Phone Numbers within minutes.










Recently,  I learned about itertools in python. Especially, about the functions permutations, combinations, and products and I tried to make a script that generates all phone numbers in our country. I bet your phone number is too on the list.

let the hack begin!!!


First, you need to install itertools in your computer 


Simply open your terminal and type

            sudo apt-get install -y python-more-itertools


Then Write the code below

from itertools import product
file_name ="phonebook.txt"

phonebook = open(file_name,'a')
prefixes = ['+9471']

product_a = product(['1','2','3','4','5','6','7','8','9','0'],
['1','2','3','4','5','6','7','8','9','0'],
['1','2','3','4','5','6','7','8','9','0'],
['1','2','3','4','5','6','7','8','9','0'],
['1','2','3','4','5','6','7','8','9','0'],
['1','2','3','4','5','6','7','8','9','0'],
['1','2','3','4','5','6','7','8','9','0']
)


for prefix in prefixes:
for product_combined in product_a:
suffix = ''.join(product_combined)
phonebook.write(prefix+suffix+'\n')

phonebook.close()




Here prefixes list consists of the country code and service provider's code.
as an example the first item of my prefix list:

  '+94' is the country code and '71' is the service provider code you can customize this list as you want.

then I open a text file to write my output using the open() function.


PHILOSOPHY OF THE CODE


In the beginning, I imported the function product that returns all possible combinations and permutations as a list. 

then I started a for loop for pick a prefix and I start another for loop to join combination and prefix together and write it into our file

suffix = ''.join(product_combined)

Here product_combined is a tuple and we use the join() function to join the items in the tuple as a string

phonebook.write(prefix+suffix+'\n')

And this line to write our file line by line

That is all and you are all set to generate crores of phone numbers and a number will contain 12 characters if you do it like I did. But you can change them simply by changing the prefix-list and number of lists given as parameters to the product function.

As an example, if you give 7  lists as parameters you will have a combination of 7 characters.

WARNING
As too much data is manipulated your machine may be stuck. To avoid this I strongly recommend using only one item in prefix_list once.


Comments

Trending Now

Find the Resultant vector of two Vectors With PYTHON!!

NEW ARTICLE:  How to Find the resultant of multiple vectors with Python! Using Python We can do many complex calculations. I learned how to calculate Resultant Vector using a formula with its size and direction in my Physics class. Then, I simply developed a CLI software to calculate the resultant of given two vectors Hope you like it :>) Follow me... Step :1 You need to install python on your computer. No matter what the operating system is you can find the ideal version of python from the official website of Python org And you will need a code editor like VS code and can download it with a simple Google search. (Hope you hate the first step Haha ) Step 2: we use the math module to calculate our resultant vector. The method I used as follows math.radians() : converts degrees to radians math.degrees() : converts radians to degrees math.sqrt()  : find the square root of a number math.atan() :find the tan inverse Step 3: the formula I used to calculate the size of the resultant is as

How to send and receive discord messages with your bot in 2023.

Hello everyone. Welcome back to the Blog of Chamodh today I will show you how to send and receive discord messages with your bot. Before getting started, I remind you that this is the second episode of the series How to make Discord bot in 2023 and if you haven't read the previous one, please read that first as I explain how to create your bot application and add it to a server there. READ:  https://blogofchamodh.blogspot.com/2023/02/how-to-make-your-own-discord-bot-2023.html We don't gonna use virtual environments, IDEs, or any other utility because we can use Replit for our coding purposes.  Let's Get Started. STEP1: Set up Replit It is really simple. Just go to  https://replit.com/~ and sign up if you have never used its service before and create a new Repl. I don't hope to guide you in this as this is an intermediate tutorial. Make sure to select Python as you create the new Repl because we are going to use Python for our back end. STEP 2: Get your token. To run ou