HomePROJECTS

Tracker IP

Dec 21 20221 min read
PythonTools
entities

Installation

  • Download, and run.

It is a small tool that displays data from a web site or ip entered.

βˆ‘n=1∞1n2=Ο€26\sum_{n=1}^\infty \frac{1}{n^2} = \frac{\pi^2}{6}

The famous equation is E=mc2E=mc^2 and shows the equivalence between mass and energy.

Code

python
1import socket
2import requests
3from os import system
4
5system('clear')
6print("Welcome, please")
7site = input("\nEnter the website: ")
8ip = socket.gethostbyname(site)
9got = requests.get(f"http://ip-api.com/json/{ip}").json()
10lat = requests.get(f"http://ipwho.is/{ip}").json()
11
12print("IP Address:", got["query"])
13print("ISP:", got["isp"])
14print("Type:", lat["type"])
15

Download Here

Share this article

Β© 2026