1
0
mirror of https://github.com/balkian/gists.git synced 2024-09-21 04:41:44 +00:00
gists/hostname.py
J. Fernando Sánchez c3f90fc237
2018-07-25 19:24:48 +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()