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

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

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

2 个仓库

Awesome GitHub RepositoriesDefault Value Imputers

Mechanisms for populating missing fields with default values during deserialization.

Distinct from Missing Data Imputation: Distinct from Missing Data Imputation: focuses on schema-driven default population during deserialization rather than general dataset imputation.

Explore 2 awesome GitHub repositories matching data & databases · Default Value Imputers. Refine with filters or upvote what's useful.

Awesome Default Value Imputers GitHub Repositories

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

    serde-rs/serde

    10,457在 GitHub 上查看↗

    This project is a framework for the efficient serialization and deserialization of data structures. It provides a unified, macro-based interface that automates the conversion of complex internal objects into standardized formats and reconstructs them from raw input streams or buffers. By leveraging compile-time code generation, the library minimizes manual implementation overhead while ensuring consistent logic across diverse data types. The framework distinguishes itself through a format-agnostic data model and a visitor-based parsing architecture that decouples data structures from specific

    Automatically populates missing fields with default values during the deserialization process.

    Rustderiveno-stdrust
    在 GitHub 上查看↗10,457
  • zalando/connexionzalando 的头像

    zalando/connexion

    4,600在 GitHub 上查看↗

    Connexion 是一个规范驱动的框架,用于构建自动将 OpenAPI 规范映射到应用逻辑的 API。它使用这些规范来自动化路由、请求验证和响应序列化,并通过操作 ID 将 API 操作链接到后端处理函数。 该项目通过提供一个模式驱动的 Mock 服务器来区分开来,该服务器使用规范中的示例响应来模拟 API 行为,而无需后端逻辑。它还包括一个动态文档托管系统,将 API 规范转换为实时交互式控制台,用于探索和测试端点。 该框架涵盖了广泛的功能领域,包括通过基于中间件的身份验证和作用域验证实施安全性、可插拔的请求和响应验证逻辑,以及向类型化函数参数自动注入参数。它还提供了用于应用生命周期管理、自定义中间件集成和请求模拟测试的实用工具。 该项目可用于引导独立 Web 应用,或包装在现有框架周围以添加规范驱动的功能。

    Populates missing fields in incoming request bodies using default values specified in the API definition.

    Python
    在 GitHub 上查看↗4,600
  1. Home
  2. Data & Databases
  3. Missing Data Imputation
  4. Default Value Imputers

探索子标签

  • Schema-Driven Default InjectionPopulates missing request fields using default values defined in the API specification schema. **Distinct from Default Value Imputers:** Distinct from Default Value Imputers by focusing specifically on values derived from the API specification rather than general deserialization logic.