Build a Phone Number Tracker GUI in Python

This is Phone Number Tracker GUI Projects Using Python.

🔗 Links

Requirments

$ pip install pytz

$ pip install phonenumbers

$ pip install timezonefinder

$ pip install geopy

Demo Screenshots

image

image

image

Source Code

PhoneNumberDetails.py

from tkinter import*
import phonenumbers
from phonenumbers import carrier
from phonenumbers import geocoder
from phonenumbers import timezone
from timezonefinder import TimezoneFinder
from geopy.geocoders import Nominatim
from datetime import datetime
import pytz

root=Tk()
root.title("Phone Number Tracker")
root.iconbitmap('Images/logo_PI6_icon.ico')
root.geometry("365x584+200+100")
root.resizable(False,False)

def track():
	entry_number=entry.get()
	number=phonenumbers.parse(entry_number)
	# country
	locate=geocoder.description_for_number(number, 'en')
	country.config(text=locate)
	# operator 
	operator=carrier.name_for_number(number, 'en')
	sim.config(text=operator)
	# Phone Timezone
	time=timezone.time_zones_for_number(number)
	zone.config(text=time)
	# logitude and latitude 
	geolocator=Nominatim(user_agent="geoapiExercises")
	location=geolocator.geocode(locate)

	lng=location.longitude
	lat=location.latitude
	longitude.config(text=lng)
	latitude.config(text=lat)

	# time showing in phone
	obj=TimezoneFinder()
	result=obj.timezone_at(lng=location.longitude,lat=location.latitude)

	home=pytz.timezone(result)
	local_time=datetime.now(home)
	current_time=local_time.strftime("%I:%M:%p")
	clock.config(text=current_time)

	
# logo
logo=PhotoImage(file="Images/logoimage.png")
Label(root,image=logo).place(x=240,y=70)

Heading=Label(root,text="TRACK NUMBERS",font=("arial",15,"bold"))
Heading.place(x=84,y=110)

# Entry
Entry_back=PhotoImage(file="Images/search png.png")
Label(root,image=Entry_back).place(x=20,y=190)


entry=StringVar()
entry_number=Entry(root,textvariable=entry,width=19,font=("arial",18,"bold"),bd=0,justify="center")
entry_number.place(x=57,y=222)

# Button
Search_image=PhotoImage(file="Images/search.png")
Search=Button(root,image=Search_image,borderwidth=0,cursor="hand2",font=("arial",16),command=track)
Search.place(x=35,y=300)

# Button Box
Box=PhotoImage(file="Images/bottom png.png")
Label(root,image=Box).place(x=-2,y=355)

country=Label(root,text="Country:",bg="#57adff",fg="black",font=("arial",10,"bold"))
country.place(x=50,y=400)

sim=Label(root,text="SIM:",bg="#57adff",fg="black",font=("arial",10,"bold"))
sim.place(x=200,y=400)

zone=Label(root,text="TimeZone:",bg="#57adff",fg="black",font=("arial",10,"bold"))
zone.place(x=50,y=450)

clock=Label(root,text="Phone Time:",bg="#57adff",fg="black",font=("arial",10,"bold"))
clock.place(x=200,y=450)

longitude=Label(root,text="Longitude:",bg="#57adff",fg="black",font=("arial",10,"bold"))
longitude.place(x=50,y=500)

latitude=Label(root,text="Latitude:",bg="#57adff",fg="black",font=("arial",10,"bold"))
latitude.place(x=200,y=500)

root.mainloop()

Source: https://github.com/4mritGiri/NumberTracker 

#python 

Build a Phone Number Tracker GUI in Python
1.65 GEEK