Skip to main content

A package that reads models from YAML and creates Pydantic models

Project description

PyModeller

Python uv License Quality Gate Status Tests CI Ruff Coverage

PyModeller is a DevOps-oriented CLI tool designed to synchronize infrastructure requirements with Python application code. By utilizing a single YAML "Source of Truth," PyModeller automates the generation of Pydantic models, Peewee ORM classes, and .env templates, ensuring your configuration and database schemas never drift from your documentation.

Core Features

  • Code Generation: Instant creation of typed Pydantic models or Peewee schemas from YAML.
  • Traceable Settings: Automatically generates a BaseTraceableSettings class. All settings inherit from this, enabling data source tracking and native YAML loading capabilities.
  • Environment Templates: Auto-generate .env.example files for seamless developer onboarding.
  • Validation & Safety: Verify local .env files against specifications to catch errors before runtime.
  • Drift Detection: Identify discrepancies between your YAML definitions and existing Python code.

Project Initialization & Core Models

By default, PyModeller looks for a py_modeller.yaml file in the root of your project. This file must contain two main sections: config and sections.

The 'General' Section

For Pydantic model generation, it is required to define a section named General. This section is used to generate the general_setting class, which serves as the primary configuration entry point.

  • Centralized Access: This allows you to import the global configuration state from anywhere in your application.
  • Project Metadata: It typically holds flags like LOCAL_DEV, N_THREADS, or global API keys.

Installation

Install the package using uv or pip:

 uv add pymodeller

Usage

The CLI provides four main commands to manage your development workflow:

1. Generate models

Generate typed Pydantic models or Peewee code for your project.

pymodeller codegen

2. Example Environment Generation

Generate a template .env.example file based on your YAML specification to help collaborators set up their environment.

pymodeller example

3. Environment Check

Validate your current .env file against the YAML specification to ensure all required variables are present and correctly formatted.

pymodeller check

4. Drift Detection

Check for "drift" between your YAML specification and the code already generated. This ensures that your Python models haven't fallen out of date.

pymodeller drift

CLI Command Reference

pymodeller cli

Data Loading & Specification

The project uses a structured YAML-to-Object mapping to manage environment variables and database schemas. The py_modeller.yaml acts as the Single Source of Truth, which is parsed into an EnvSpec instance.

Environment Data Model Specification (YAML)

This document defines the schema for the py_modeller.yaml file. This file is used by the loader.py to generate typed Python dataclasses and manage environment variables, settings, and database schemas.

Validation

The loading process includes a mandatory validate_no_duplicates() call which ensures:

  1. No two environment variables share the same env_name.
  2. No two Python attributes (aliases) collide within the same section.

Technical Specification

BaseTraceableSettings

Every generated settings class inherits from BaseTraceableSettings. This core class provides:

  • Source Tracking: Maintains a record of where each setting value originated (Environment, YAML, or Default).
  • YAML Loader: Built-in methods to populate settings directly from structured YAML files.

1. Global Config (config)

Defines the output paths for generated files.

Key Description
PYDANTIC_OUT Main file path for Pydantic models.
PYDANTIC_FOLDER Directory for individual Pydantic model files.
PEEWEE_OUT Main file path for the Peewee ORM models.
PEEWEE_FOLDER Directory for individual ORM model files.

2. Root Structure

The YAML must contain a top-level sections key which is a list of environment groups.

sections:
- name: "ExampleSection"
  variables: []

3. Section Schema (EnvSection)

Key Type Description
name string Required. The display name of the section.
description string Brief explanation of the section's purpose.
env_prefix string Prefix added to all variables in this section (e.g., APP_).
type string Section category: settings, model, or peewee (Default: model).
include_general boolean Whether to include general configurations (Default: true).
include_literal boolean Used for FastAPI/literal exports (Default: true).
database object Optional. Metadata for Database tables (See DBSpec).
variables list A list of variable definitions (See EnvVarSpec).

4. Variable Specification (EnvVarSpec)

Key Type Description
name string Required. The variable name (automatically converted to snake_case in Python).
type string Data type mapping (See Supported Types).
description string Documentation for the variable.
default any Default value if the environment variable is not set.
required boolean If true, the loader validates its existence.
secret boolean If true, masks the value in logs (Type secret is a shortcut).
alias string Custom Python attribute name (Defaults to camelCase of name).
db_spec object Optional. ORM field configuration (See DBField).

Supported Types

The loader normalizes the following types:

  • Primitives: string, integer, number (float), boolean, datetime.
  • Special: secret (shortcut for str + secret: true), path, list.
  • Numpy Arrays: pnd.NpNDArrayUint8, pnd.NpNDArrayInt8, pnd.NpNDArrayFp32.

Note: We are actively working on expanding this list to support additional data types and specialized structures in future releases.


5. Database Specification (DBSpec)

Defined at the section level for Peewee/ORM metadata.

Key Type Description
table_name string Explicit name for the database table.
schema string Database schema (e.g., public).
primary_key list List of field names that form a composite primary key.
indexes list Custom database index definitions.
constraints list Table-level constraints.

6. Database Field Specification (DBField)

Defined under the db_spec key within a variable.

Key Type Description
primary_key boolean Marks the field as the primary key.
allow_null boolean Allows NULL values in DB (Default: false).
unique boolean Adds a UNIQUE constraint.
max_length integer Max characters for string fields.
foreign_key string Reference to another model/table.
choices list Enforces a list of allowed string values.
max_digits integer Precision for decimal numbers.
decimal_places integer Scale for decimal numbers.

Example Usage

sections:
- name: "Network"
  env_prefix: "NET"
  type: "settings"
  variables:
    - name: "host_address"
      type: "string"
      default: "0.0.0.0"
      alias: "serverHost"

- name: "UsersTable"
  type: "peewee"
  database:
    table_name: "app_users"
  variables:
    - name: "id"
      type: "integer"
      db_spec:
        primary_key: true
    - name: "api_key"
      type: "secret"
      required: true

Contributing

Contributions are welcome! We value your help in making PyModeller better.

Before you get started, please refer to our Contributing Guide for details on our development workflow, coding standards, and how to submit pull requests.

If you encounter a bug or have a feature request, feel free to open an issue.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymodeller-0.5.5.tar.gz (123.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pymodeller-0.5.5-py3-none-any.whl (32.2 kB view details)

Uploaded Python 3

File details

Details for the file pymodeller-0.5.5.tar.gz.

File metadata

  • Download URL: pymodeller-0.5.5.tar.gz
  • Upload date:
  • Size: 123.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pymodeller-0.5.5.tar.gz
Algorithm Hash digest
SHA256 ca18697639482cb7862b89303fb7c650dcd7bb44a58b84c07005f6293297fe4a
MD5 0095d376345d4a91a3d7992a2addddc3
BLAKE2b-256 9b7b31db3a6cc0479981705389476dcc1f3d6d2cbd8b2fab54939c4083ad1546

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymodeller-0.5.5.tar.gz:

Publisher: main.yaml on pymodeller/PyModeller

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymodeller-0.5.5-py3-none-any.whl.

File metadata

  • Download URL: pymodeller-0.5.5-py3-none-any.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pymodeller-0.5.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f588972e10b575324b50522bda2dbeac6d86e788dbd93f630b2e8190d6db1678
MD5 f5321526f6a0afa53ca7614cc90b3b56
BLAKE2b-256 ce03665ae411b23cba38047ef1d3e2e1e1e143e4b66faa460d8d9f2ad5cc7c94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymodeller-0.5.5-py3-none-any.whl:

Publisher: main.yaml on pymodeller/PyModeller

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page