摘要: 如何以快捷键的方式输入flask初始模块 将下面的代码做成快捷键: from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return 'hello world' if __name__ == '__ma 阅读全文
posted @ 2022-04-03 20:39 xiongsheng 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1.查看所有的关键字 help("keywords") 2. 查看python所有的modules help("modules") 3. 单看python所有的modules中包含指定字符串的modules help("modules yourstr") 4. 查看python中常见的topics 阅读全文
posted @ 2022-04-03 00:19 xiongsheng 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 欢迎来到Flask的世界 1. Flask介绍 Flask诞生于2010年,是Armin ronacher 用 Python 语言基于 Werkzeug 工具箱编写的轻量级Web开发框架。 Flask是一个使用 Python 编写的轻量级 Web 应用框架。其 WSGI 工具箱采用 Werkzeug 阅读全文
posted @ 2022-04-03 00:00 xiongsheng 阅读(187) 评论(0) 推荐(0) 编辑