标签:csdn tps none for port sdn request logs add
参考博客:https://blog.csdn.net/conquerwave/article/details/77666226
from urllib.request import urlopen from json import load my_ip = urlopen(‘http://ip.42.pl/raw‘).read() print(‘ip.42.pl‘, my_ip) my_ip = load(urlopen(‘http://jsonip.com‘))[‘ip‘] print(‘jsonip.com‘, my_ip) my_ip = load(urlopen(‘http://httpbin.org/ip‘))[‘origin‘] print(‘httpbin.org‘, my_ip) my_ip = load(urlopen(‘https://api.ipify.org/?format=json‘))[‘ip‘] print(‘api.ipify.org‘, my_ip)
运行结果:
标签:csdn tps none for port sdn request logs add
原文地址:https://www.cnblogs.com/betterwgo/p/11659932.html