- 相关推荐
python使用Flask框架获取用户IP地址有什么办法
python使用Flask框架获取用户IP地址有什么办法呢?读了下面小编整理的内容或许解决您的问题。更多内容请关注应届毕业生考试网!
下面的代码包含了html页面和python代码,非常详细,如果你正使用Flask,也可以学习一下最基本的Flask使用方法。
python代码如下:
from flask import Flask, render_template, request
# Initialize the Flask application
app = Flask(__name__)
# Default route, print user's IP
@app.route('/')
def index():
ip = request.remote_addr
return render_template('index.html', user_ip=ip)
if __name__ == '__main__':
app.run(
host="0.0.0.0",
port=int("80")
)
html代码如下:
?
<!DOCTYPE html>
<html lang="en">
<head>
<link href="bootstrap/3.0.0/css/bootstrap.min.css"
rel="stylesheet">
</head>
<body>
<P class="container">
<P class="header">
<h3 class="text-muted">How To Get The IP Address Of The User</h3>
</P>
<hr/>
<P>
You IP address is: <strong>{{user_ip}}</strong>
<P class="header">
<h3 class="text-muted">Code to retrieve the IP</h3>
</P>
<hr/>
<pre>
from flask import Flask, render_template, request
# Initialize the Flask application
app = Flask(__name__)
# Default route, print user's IP
@app.route('/')
def index():
ip = request.remote_addr
return render_template('index.html', user_ip=ip)
</pre>
</P>
</P>
</body>
</html>
【python使用Flask框架获取用户IP地址有什么办法】相关文章:
python使用Flask框架获取用户IP地址的方法08-26
Python获取IP地址的三种方法09-29
电脑如何自动获取ip地址06-02
php获取IP物理地址的方法10-10
网络特殊用途IP地址有什么用08-18
php通过Chianz.com获取IP地址与地区的方法08-12
PHP获取真实的客户IP的方法09-01
php如何获得ip地址09-06
ip地址如何修改呢08-23