HomePROJECTS

Tracker IP

A Tracker IP over web sites and more
Dec 21 2022
1 min readPython, Tools
entities

Installation

  • Download, and run.

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

n=11n2=π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

Did you like this article? Share it!

© 2025