Python新项目最佳实践

最近想居于Python、MongoDB这两个大的方向,做一个API接口的项目,方向大体确定,根据一贯作风,去谷歌检索 "python mongo best practices" 这其中需要解决一些问题: * ORM框架选择(MyBatis) * WEB选择(类似SpringMVC、SpringBootstart) * ... ORM框架先后把MongoEngine、Beanie作为候选,WEB端历史记忆中对Flask比较熟悉;但后来得到MongoDB官方文档提示,FastAPI可能更合适当前,尝试新框架磨合。 8 Best Practices for Building FastAPI and MongoDB Applications | MongoDBFastAPI seamlessly integrates with MongoDB through the Motor library, enabling asynchronous database interactions.MongoDBMark Smith 慢慢调试出下列框架 * FastAPI…