2 回答
TA贡献1744条经验 获得超4个赞
您可以使用此代码:
import socket
hostname = socket.getfqdn()
print("IP Address:",socket.gethostbyname_ex(hostname)[2][1])
或者这样获取公共IP:
import requests
import json
print(json.loads(requests.get("https://ip.seeip.org/jsonip?").text)["ip"])
TA贡献1805条经验 获得超9个赞
您只能通过互联网上的外部服务器获知您的公共 IP 地址。有许多网站可以轻松提供此信息。以下是来自 Python 模块的代码whatismyip,可以从公共网站获取它:
import urllib.request
IP_WEBSITES = (
'https://ipinfo.io/ip',
'https://ipecho.net/plain',
'https://api.ipify.org',
'https://ipaddr.site',
'https://icanhazip.com',
'https://ident.me',
'https://curlmyip.net',
)
def getIp():
for ipWebsite in IP_WEBSITES:
try:
response = urllib.request.urlopen(ipWebsite)
charsets = response.info().get_charsets()
if len(charsets) == 0 or charsets[0] is None:
charset = 'utf-8' # Use utf-8 by default
else:
charset = charsets[0]
userIp = response.read().decode(charset).strip()
return userIp
except:
pass # Network error, just continue on to next website.
# Either all of the websites are down or returned invalid response
# (unlikely) or you are disconnected from the internet.
return None
print(getIp())
或者您可以安装pip install whatismyip然后调用whatismyip.whatismyip()。
- 2 回答
- 0 关注
- 123 浏览
添加回答
举报