python+flask+html+css制作一个简单的生日祝福语网页
一个py文件: test.py
一个html文件: birthday_index.html
一张图片: timg.jpg
一个文件夹: static
条件:已安装python3和flask
test.py的内容如下:
from flask import Flask,send_file ### 导出flask类
app = Flask(__name__) ### 生成一个web app对象
@app.route('/') ### 注册一个url,表示当请求url+'/'这个网站时,执行hello_world这个函数
def Birthday_index():
return send_file("Birthday_index.html")
if __name__ == '__main__': ### 启动app应用
app.run() ### 相关参数:app.run(host=,port=,debug=,**options)
### host 默认是:127.0.0.1
### port 默认是:5000