Python编程小案例—利用flask查询本机IP归属并输出网页图片
环境:Pycharm + Mac OS
源码如下:
from flask import Flask, render_template, request
app = Flask(__name__)
@app.route('/')
def index():
return render_template('IP查询.html')
if __name__ == '__main__':
app.run()
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>IP地址查询</title>
</head>
<body>
<a href="https://ipuu.net/Toolset/myip" ><img src="https://ipuu.net/ipuu/200*200.png"/></a>
</body>
</html>
在文件同级目录建立如上图的文件夹templates,然后在该目录下保存html文件。
运行结果如下:
点击http://127.0.0.1:5000
以上案例可以通过小蜜蜂AI实现,欢迎扫码注册体验: