摘要: Python 中谷歌注释风格 参考文章:https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_style_rules/#section-8 1.模块 每个文件应该包含一个许可样板. 阅读全文
posted @ 2022-08-07 17:06 紫青宝剑 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 3.请求到来 from flask import Flask app = Flask(__name__) app.config.from_object('config.setting') @app.before_request def f1(): print("f1") @app.before_re 阅读全文
posted @ 2022-08-07 16:58 紫青宝剑 阅读(73) 评论(0) 推荐(0) 编辑
摘要: Python 操作 yaml 文件 yaml的意思是:Yet Another Markup Language(仍是一种标记语言) 参考文章:https://blog.csdn.net/weixin_43831559/article/details/124850190 1.yaml 文件 语法特点: 阅读全文
posted @ 2022-08-07 16:41 紫青宝剑 阅读(701) 评论(0) 推荐(0) 编辑