erplibre/script/deployment/get_public_ip.py
Mathieu Benoit 887f05da56 [ADD] cloudflare deployement: change old ip to new ip, or delete DNS config
- Script to get public ip
- Documentation how to use with crontab
2021-06-27 00:36:52 -04:00

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)