Advertisement
Hanafi112

Ip tracer python

Apr 28th, 2023
1,053
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | Cybersecurity | 0 0
  1. import requests
  2. import pprint
  3.  
  4. ip = "(isi ipmu)"
  5. url = f"https://ipapi.co/{ip}/json"
  6.  
  7. r = requests.get(url)
  8. pprint.pprint(r.json())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement