Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 Python 玩一些服务器端的东西,我希望该程序能够在我的 LAN 之外使用。最好的方法是什么?
在我的脑海中,您可以使用返回您的 ip 的外部网页。例如使用页面 myip.dnsdynamic.org:
import urllib2 myip = urllib2.urlopen("http://myip.dnsdynamic.org/").read()