awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesORM Data Models

Defines database tables as Python classes with typed fields and relationships, mirroring Django's model syntax.

Distinct from Data Modeling: Distinct from Data Modeling: focuses on ORM-specific model definitions with Django-like syntax, not general data schema design.

Explore 3 awesome GitHub repositories matching data & databases · ORM Data Models. Refine with filters or upvote what's useful.

Awesome ORM Data Models GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • tortoise/tortoise-ormtortoise 的头像

    tortoise/tortoise-orm

    5,582在 GitHub 上查看↗

    Tortoise ORM is an asynchronous object-relational mapper for Python that mirrors Django's model and queryset API while running on asyncio. It defines database tables as Python classes with typed fields and supports foreign key, many-to-many, and one-to-one relations, providing a chainable query API for filtering, annotating, grouping, and prefetching related objects without blocking the event loop. The ORM includes a built-in migration engine that detects model changes, generates migration files, and applies or reverts schema changes through a command-line tool. It connects to PostgreSQL, MyS

    Defines database tables as Python classes with typed fields and relationships, mirroring Django's model syntax.

    Pythonasyncasynciomysql
    在 GitHub 上查看↗5,582
  • codeception/codeceptionCodeception 的头像

    Codeception/Codeception

    4,855在 GitHub 上查看↗

    Codeception 是一个 PHP 应用程序的全栈测试框架,为单元测试、功能测试和验收测试提供统一的界面。它作为通过 WebDriver 协议自动化真实桌面和移动浏览器的工具,并充当测试 REST 和 SOAP API 的客户端。 该框架的特色在于对行为驱动开发(BDD)的支持,允许用户使用 Gherkin 语言编写人类可读的测试规范,以使技术测试与业务需求保持一致。它实现了基于角色的动作映射,将这些自然语言步骤连接到可执行的 PHP 方法。 其功能涵盖了广泛的领域,包括 SQL 和 NoSQL 存储的数据库状态验证和管理、通过浏览器自动化模拟用户工作流,以及使用 JSON 和 XML 验证 API 数据结构。它还提供了用于衡量代码覆盖率以及通过依赖注入和服务容器操作管理测试生命周期的工具。 该项目包括一个引导式的命令行安装过程,用于生成标准化的测试样板和配置文件。

    Interacts with databases via domain models and wraps test actions in roll-backable transactions.

    PHP
    在 GitHub 上查看↗4,855
  • django-helpdesk/django-helpdeskdjango-helpdesk 的头像

    django-helpdesk/django-helpdesk

    1,680在 GitHub 上查看↗

    Django Helpdesk is an open-source, web-based ticketing system built on the Django framework. It provides a centralized platform for tracking and resolving support requests, enabling organizations to manage internal helpdesk operations and customer communication through a modular, Python-based architecture. The system distinguishes itself by offering a public-facing support portal that allows users to submit and view tickets without requiring authentication. It also includes integrated workflow tools such as kanban boards for visualizing task progress and automated routing rules that assign in

    Defines database tables as Python classes with typed fields and relationships.

    Pythonagilebugscases
    在 GitHub 上查看↗1,680
  1. Home
  2. Data & Databases
  3. Data Modeling
  4. ORM Data Models

探索子标签

  • Model ConfigurationsSettings that define model behavior such as custom table names and database connections. **Distinct from ORM Data Models:** Focuses on configuration settings for ORM models rather than the structural definition of the models themselves.
  • ORM Transaction ManagementManaging database interactions through object-relational mapping and wrapping test actions in roll-backable transactions. **Distinct from ORM Data Models:** Distinct from ORM Data Models: focuses on the operational management and transaction wrapping of data rather than the model definitions.