09 2022 档案
摘要:The Twelve-Factor App https://12factor.net/ Introduction In the modern era, software is commonly delivered as a service: called web apps, or software-
阅读全文
摘要:pytest https://docs.pytest.org/en/7.1.x/contents.html # content of test_sample.py def func(x): return x + 1 def test_answer(): assert func(3) == 5 A h
阅读全文
摘要:loguru https://loguru.readthedocs.io/en/stable/index.html 开箱即用,简化用户配置。 Loguru is a library which aims to bring enjoyable logging in Python. Did you ev
阅读全文
摘要:DI https://www.professionalqa.com/dependency-injection What is Dependency Injection? A software design pattern that implements inversion of control fo
阅读全文
摘要:mkdocs https://www.mkdocs.org/ MkDocs is a fast, simple and downright gorgeous static site generator that's geared towards building project documentat
阅读全文
摘要:LDAP https://www.onelogin.com/learn/what-is-ldap LDAP是一种软件协议, 用于查询一个网络内的信息和设备。 提供服务: 组织内的用户认证 简化访问内部服务器。 The Lightweight Directory Access Protocol (LD
阅读全文
摘要:oso https://github.com/osohq/oso Oso is a batteries-included framework for building authorization in your application. OSO是一款功能齐全的框架, 可以在应用中使用这个工具构建授权
阅读全文
摘要:JWT https://jwt.io/introduction 是一套开放的标准,定义了在两者之前安全传输信息的方法,信息的内容为JSON格式。 What is JSON Web Token? JSON Web Token (JWT) is an open standard (RFC 7519) t
阅读全文
摘要:ROUTER OF APP https://fastapi.tiangolo.com/tutorial/first-steps/ 如果应用比较简单,可以把所有的路径定义在app上。 如果应用非常庞大,有很多的逻辑,按照业务分为产生数十以上的路径,则需要用模块的方式拆分应用 路径也需要对应拆分,不能把
阅读全文
摘要:DI (Dependency Injection) https://www.freecodecamp.org/news/a-quick-intro-to-dependency-injection-what-it-is-and-when-to-use-it-7578c84fa88f/ 依赖注入 当一个
阅读全文