博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python] Create a minimal website in Python using the Flask Microframework
阅读量:5363 次
发布时间:2019-06-15

本文共 709 字,大约阅读时间需要 2 分钟。

How to install Flask Use Flask to create a minimal website Build routes in Flask to respond to website endpoints Use Variable Rules to pass parts of the URL to your functions as keyword parameters

Install:

pip install Flask

 

Development Mode:

run_local.sh:

#!/bin/bashexport FLASK_APP=app.pyexport FLASK_DEBUG=1flask run

 

app.py:

from flask import Flaskapp = Flask(__name__)@app.route('/')def hello_world():    return 'Hello world!'@app.route('/foo/')def foo():    return 'The foo page'@app.route('/bar')def bar():    return 'The bar page'@app.route('/hello/')@app.route('/hello/
')def say_hello(name=None): return 'Hello {}'.format(user)

 

转载于:https://www.cnblogs.com/Answer1215/p/8973838.html

你可能感兴趣的文章
第七章笔记
查看>>
“滑机约拍”--第一阶段冲刺
查看>>
任务管理器隐藏一个进程
查看>>
MySQL死锁查询【原创】
查看>>
二维傅里叶变换的应用-相位相关
查看>>
元类type
查看>>
Linux网络协议栈(四)——链路层(1)
查看>>
Python运行机制
查看>>
Android应用性能优化之使用SparseArray替代HashMap
查看>>
sed.md
查看>>
MyEclipse启动一直停留在Loading workbench界面上的处理
查看>>
Html2
查看>>
【详解】嵌入式开发中固件的烧录方式
查看>>
FPGA静态时序分析——IO口时序(Input Delay /output Delay)
查看>>
C++操作Windows WIFI
查看>>
angular指令的简单练习
查看>>
加装武器
查看>>
ionic系列控件之Action Sheet
查看>>
转载:Git入门
查看>>
数据库连接
查看>>