大型 Python 项目通常会演变成难以维护的复杂代码库。跟踪进口、层以及谁依赖谁很快就会变得一团糟。 Deply 随时为您提供帮助。它分析您的代码结构并强制实施架构规则,确保您的 Python 项目即使在增长时也保持干净、模块化且易于维护。
Python 的灵活性使得如果我们不小心的话很容易引入意大利面条式代码。添加新模块、装饰器,甚至更改类的继承方式可能会在大型团队中引入微妙的依赖问题。通过自动检查强制执行的清晰边界有助于保持较高的代码质量。这种方法提高了可读性和团队生产力。
Deply 是一个独立的工具:
Deply 的优势在于它超越了导入,还考虑了装饰器、类继承、文件模式等等。其基于 YAML 的配置可以更轻松地合并到 CI 管道中,而无需编写新的测试文件。
pip install deply
您将获得最新版本,当前为 0.5.2。
在项目根目录中创建一个 deply.yaml 文件。至少,定义要分析的路径、要排除的任何文件、层和规则。下面是一个类似 Django 项目的示例片段。
deply: paths: - /path/to/your/project exclude_files: - ".*\.venv/.*" layers: - name: models collectors: - type: bool any_of: - type: class_inherits base_class: "django.db.models.Model" - type: class_inherits base_class: "django.contrib.auth.models.AbstractUser" - name: views collectors: - type: file_regex regex: ".*/views_api.py" ruleset: views: disallow_layer_dependencies: - models enforce_function_decorator_usage: - type: bool any_of: - type: bool must: - type: function_decorator_name_regex decorator_name_regex: "^HasPerm$" - type: function_decorator_name_regex decorator_name_regex: "^extend_schema$" - type: function_decorator_name_regex decorator_name_regex: "^staticmethod$"
工作原理:
配置准备就绪后,运行:
pip install deply
deply: paths: - /path/to/your/project exclude_files: - ".*\.venv/.*" layers: - name: models collectors: - type: bool any_of: - type: class_inherits base_class: "django.db.models.Model" - type: class_inherits base_class: "django.contrib.auth.models.AbstractUser" - name: views collectors: - type: file_regex regex: ".*/views_api.py" ruleset: views: disallow_layer_dependencies: - models enforce_function_decorator_usage: - type: bool any_of: - type: bool must: - type: function_decorator_name_regex decorator_name_regex: "^HasPerm$" - type: function_decorator_name_regex decorator_name_regex: "^extend_schema$" - type: function_decorator_name_regex decorator_name_regex: "^staticmethod$"
服务层中的所有类都必须以Service结尾。
deply analyze
任务中的所有函数都必须以task_开头。
专业提示:将多个条件与 bool 结合起来形成高级逻辑(must、any_of、must_not),确保您可以制定高度具体的规则。
向您的 CI 管道添加一个步骤:
service: enforce_class_naming: - type: class_name_regex class_name_regex: ".*Service$"
如果发现任何架构违规,您的管道可能会失败。
Deply 旨在帮助您在架构违规变成耗时的重构之前捕获它们。通过自动化这些检查,即使在大型团队中,您也可以保持清晰的分层设计。
请随意测试并根据自己的需要调整配置。如果您有疑问或想法,请查看存储库以了解有关提交问题或贡献的详细信息。快乐编码!
以上是Deply:保持 Python 架构干净的详细内容。更多信息请关注PHP中文网其他相关文章!