1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-21 17:22:29 +00:00

Add 'repos/b21443fe1d57fdfe0fe2f79827be3551/' from commit 'c3f90fc23787e53f8c2f2aafa9ac1d5880fb01ef'

git-subtree-dir: repos/b21443fe1d57fdfe0fe2f79827be3551
git-subtree-mainline: 641416ea0a
git-subtree-split: c3f90fc237
This commit is contained in:
J. Fernando Sánchez 2021-10-30 15:12:26 +02:00
commit 2ee5da5427

View File

@ -0,0 +1,6 @@
try:
import urllib2
except ImportError:
from urllib.request import urlopen
response = urlopen('http://v4.ifconfig.co/ip')
HOSTNAME = response.read()