2024-08-26 14:55:36 -04:00
|
|
|
#!/usr/bin/env python3
|
2026-03-11 23:15:07 -04:00
|
|
|
# © 2021-2026 TechnoLibre (http://www.technolibre.ca)
|
2024-08-26 14:55:36 -04:00
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
|
|
|
|
2021-03-18 22:22:36 -04:00
|
|
|
import requests
|
|
|
|
|
|
2021-06-27 00:49:00 -04:00
|
|
|
r = requests.get(r"https://api.ipify.org")
|
2021-03-18 22:22:36 -04:00
|
|
|
ip = r.text
|
|
|
|
|
print(ip)
|