awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repository-uri

Awesome GitHub RepositoriesModel Generators

Tools that generate data model classes from existing database schemas.

Distinct from Database Schema Scaffolding: Focuses on generating C# data classes from a schema, not general scaffolding.

Explore 4 awesome GitHub repositories matching development tools & productivity · Model Generators. Refine with filters or upvote what's useful.

Awesome Model Generators GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • airbnb/epoxyAvatar airbnb

    airbnb/epoxy

    8,556Vezi pe GitHub↗

    Epoxy is an Android library for building complex RecyclerView screens using a model-driven approach. It generates RecyclerView adapter models at compile time from annotated custom views, data binding layouts, or view holders, eliminating the manual boilerplate typically associated with view holders and adapters. The library provides a diffing engine that automatically compares model lists and applies minimal updates with animations for insertions, removals, and moves. The library distinguishes itself through its controller-based model building, where a controller class with a buildModels meth

    Allows generated models to inherit from a custom base class that defines shared attributes and binding logic.

    Java
    Vezi pe GitHub↗8,556
  • pallets-eco/flask-sqlalchemyAvatar pallets-eco

    pallets-eco/flask-sqlalchemy

    4,314Vezi pe GitHub↗

    Flask-SQLAlchemy is a toolkit that integrates the SQLAlchemy relational database toolkit with the Flask web framework. It enables relational data modeling by defining database table structures as Python classes and manages the persistence and retrieval of database records within a web application. The project binds database session lifecycles to the active application request context to ensure automatic connection cleanup. It provides specialized utilities for web data access, including query result pagination and a mechanism to automatically trigger 404 Not Found responses when a requested d

    Supports defining custom declarative base classes to apply shared logic across all database models.

    Pythonflaskflask-sqlalchemypython
    Vezi pe GitHub↗4,314
  • koxudaxi/datamodel-code-generatorAvatar koxudaxi

    koxudaxi/datamodel-code-generator

    3,943Vezi pe GitHub↗

    This project is a command-line schema-to-code converter designed to transform diverse data specifications into type-safe Python data structures. It functions as a generator for Pydantic models, dataclasses, and typed dictionaries, enabling developers to maintain synchronization between evolving data contracts and application code. By parsing formats such as JSON Schema, OpenAPI, AsyncAPI, Protobuf, and Avro, the tool automates the creation of native classes that reflect the constraints and metadata defined in the source specifications. The generator distinguishes itself through a highly confi

    Supports custom base class definitions and mixins to inject shared functionality into generated data models.

    Pythoncode-generatorcsvdataclass
    Vezi pe GitHub↗3,943
  • linq2db/linq2dbAvatar linq2db

    linq2db/linq2db

    3,239Vezi pe GitHub↗

    linq2db is a type-safe object-relational mapper that translates LINQ expressions into optimized SQL queries for multiple database providers. It functions as a database mapper that links classes to tables and includes a SQL query builder and a command-line schema tool for generating data classes from existing databases. The project provides high-performance bulk data processing for inserting and loading large volumes of records via batch or binary copy methods. It also supports advanced SQL operations, including window functions, common table expressions for recursive hierarchical querying, an

    Includes a command-line tool for generating data classes based on an existing database schema.

    C#accessbulk-insertsclickhouse
    Vezi pe GitHub↗3,239
  1. Home
  2. Development Tools & Productivity
  3. Code Generators
  4. Boilerplate Generators
  5. Database Schema Scaffolding
  6. Model Generators

Explorează sub-etichetele

  • Custom Base Model Inheritance1 sub-tagAllows generated models to inherit from a custom base class that can define shared attributes and binding logic. **Distinct from Model Generators:** Distinct from Model Generators: this is about allowing generated models to inherit from a custom base class, not general model generation.