gpt4 book ai didi

python - 如何通过 Cloudflare 使用 Python 或 DDNS 检查公共(public) IP

转载 作者:行者123 更新时间:2023-12-04 19:09:11 25 4
gpt4 key购买 nike

有什么方法可以使用 Python 检查我的公共(public) IP 地址吗?我在家里有一个 Cloudflare 和 VPS 帐户(但动态 IP)。我需要先更新 VPN IP,然后才能在 OVH 上拥有一个帐户,并且迁移后 DDNS 工作不起作用。

最佳答案

要求:

import requests
response = requests.get('http://ifconfig.me')
print(response.text)

python 2:
import urllib2
response = urllib2.urlopen('http://ifconfig.me')
print response.read()

python 3:
from urllib import request
response = request.urlopen('http://ifconfig.me')
print(response.read())

关于python - 如何通过 Cloudflare 使用 Python 或 DDNS 检查公共(public) IP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61431225/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com