1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-23 18:02:29 +00:00
gists/repos/get hostname from ifconfig.co/hostname.py
2021-10-30 15:16:04 +02:00

7 lines
157 B
Python

try:
import urllib2
except ImportError:
from urllib.request import urlopen
response = urlopen('http://v4.ifconfig.co/ip')
HOSTNAME = response.read()