python 3 获取本机公网ip的几种方法

参考博客: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)

运行结果:

image

 

 

 

 


    

posted @ 2019-10-12 10:24  yeren2046  阅读(3218)  评论(0)    收藏  举报