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.
我有一个 Pythonic HTTP 服务器,它应该确定客户端的 IP。我如何在 Python 中做到这一点?有没有办法获取请求标头并从那里提取它?
PS:我正在使用 WebPy。
使用 web.ctx:
class example: def GET(self): print web.ctx.ip
更多信息在这里
web.env.get('REMOTE_ADDR')