Track any phone number



If you are having a suspecious number and want to get the
information of that particular number you can try
making your own app!
Copy and paste the code given below in python or in google collab
Try running the code

import phonenumbers
from phonenumbers import timezone,geocoder,carrier
number=inp("Enter Your No. with +_ _:")
phone=phonenumbers.parse(number)
time=timezone.time_zones_for_number(phone)
car=carrier.name_for_number(phone,"en")
reg=geocoder.description_for_valid_number(phone,"en")
print(phone)
print(time)
print(car)
print(reg)

Check out the app that you can make.
Step 1) Click on the link below.
Step 2) Once you do that a google collab window will pop up
        on the screen.
step 3) Now find the cell having the code of the phone number
        tracking app.
Step 4) Select the cell and Run the Cell.
Step 5) Once you run the cell add the mobile number you want
        to track.
Step 6) Note: Add your country code with a plus (+) sign at
        the beginning.
        Example: 91+1234567890
Step 7) Now run the cell again You will get the details of
        the number you have entered.

Post a Comment

0 Comments