python使用Flask框架获取用户IP地址的方法
作者:niuniu 时间:2023-08-09 03:15:23
本文实例讲述了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>
<div class="container">
<div class="header">
<h3 class="text-muted">How To Get The IP Address Of The User</h3>
</div>
<hr/>
<div>
You IP address is: <strong>{{user_ip}}</strong>
<div class="header">
<h3 class="text-muted">Code to retrieve the IP</h3>
</div>
<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>
</div>
</div>
</body>
</html>
希望本文所述对大家的Python程序设计有所帮助。
标签:python,Flask,框架,获取,IP
0
投稿
猜你喜欢
Go 结构体序列化的实现
2024-05-21 10:26:40
如何用python绘制雷达图
2023-04-19 12:44:09
如何做一个文本搜索?
2010-07-12 19:00:00
15个开发者必须知道的chrome技巧
2022-08-27 20:24:33
mysql主键id的生成方式(自增、唯一不规则)
2024-01-14 20:20:27
960 Grid System 基本原理及使用方法
2009-02-28 13:35:00
python自动生成model文件过程详解
2023-09-30 02:54:05
MYSQL ERROR 1045 (28000): Access denied for user (using password: YES)问题的解决
2024-01-26 23:19:50
MySQL多表查询的具体实例
2024-01-22 00:13:20
用python标准库difflib比较两份文件的异同详解
2023-01-29 07:34:29
Python遍历字典方式就实例详解
2021-02-16 08:50:58
Python Ajax爬虫案例分享
2023-09-01 19:24:35
Postman 使用指南及小技巧
2023-06-23 22:28:38
Python time.time()方法
2022-11-27 16:55:47
Bootstrap modal使用及点击外部不消失的解决方法
2024-04-10 13:56:45
python启动应用程序和终止应用程序的方法
2022-09-19 19:04:32
浅谈python 中的 type(), dtype(), astype()的区别
2022-09-13 22:40:39
sql 存储过程批量删除数据的语句
2024-01-21 17:40:23
pycharm永久激活方法
2021-12-22 01:17:34
用 Python 脚本实现电脑唤醒后自动拍照并截屏发邮件通知
2023-08-30 14:15:44