6 lines
103 B
Python
Executable file
6 lines
103 B
Python
Executable file
#!./.venv/bin/python
|
|
import requests
|
|
|
|
r = requests.get(r"https://api.ipify.org")
|
|
ip = r.text
|
|
print(ip)
|