Skip to main content

Generate ERD-style D2 diagrams from Pydantic models

Project description

pydantic-diagram

Generate ERD-style diagrams from your Pydantic models using D2.

Takes a set of Pydantic models and outputs D2 code that renders as a nice visual diagram showing model relationships, inheritance, and field types.

Installation

pip install pydantic-diagram

Usage

As a library

from pydantic import BaseModel
from pydantic_diagram import render_d2

class User(BaseModel):
    id: int
    name: str

class Post(BaseModel):
    id: int
    title: str
    author: User

# Generate D2 code
# Options allow you to toggle specific features
d2_code = render_d2(
    [User, Post],
    show_inheritance=True,
    show_composition=True
)
print(d2_code)

From the command line

# From a file path (no install needed)
pydantic-diagram path/to/models.py:User,Post

# From an installed module
pydantic-diagram myapp.models:User,Post

# Diagram all models in a module/file
pydantic-diagram myapp.models

# Write to file, then render with D2
pydantic-diagram models.py -o schema.d2
d2 schema.d2 schema.svg

CLI options

pydantic-diagram <module:models> [options]

Options:
  -o, --output FILE          Write to file instead of stdout
  --direction DIR            Layout direction: right, down, left, up (default: right)
  --no-inherited             Exclude inherited fields from subclasses
  --no-inheritance-edges     Do not draw inheritance (extends) arrows
  --no-composition-edges     Do not draw composition/relation arrows
  --qualified-names          Use fully qualified names (module.ClassName)
  --no-docstrings            Exclude docstrings and field descriptions

What it diagrams

  • Model relationships: composition, collections, unions
  • Inheritance: shows parent/child class relationships
  • Field types: rendered as D2 sql_table shapes
  • Self-references: handles recursive models correctly
  • Docstrings: model and field descriptions appear as tooltips/constraints

Requirements

  • Python 3.10+
  • Pydantic 2.0+
  • D2 (for rendering the output)

License

MIT

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

pydantic_diagram-0.1.5.tar.gz (47.1 kB view details)

Uploaded Source

Built Distribution

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

pydantic_diagram-0.1.5-py3-none-any.whl (13.8 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_diagram-0.1.5.tar.gz.

File metadata

  • Download URL: pydantic_diagram-0.1.5.tar.gz
  • Upload date:
  • Size: 47.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.11

File hashes

Hashes for pydantic_diagram-0.1.5.tar.gz
Algorithm Hash digest
SHA256 d978540cbad1da2d7faf30d28c1aa26455439a22ca6ed1d1f217151a1ff22c04
MD5 9f5b244351e40a868e700ba9f5d18594
BLAKE2b-256 fb6129088fcdeb6fa175076915efd39d43333dcf1e8f6ed5bf00ae29084dac68

See more details on using hashes here.

File details

Details for the file pydantic_diagram-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_diagram-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 dea4e77103b44e7967d20e0a64266c87f9403273b3d3c8ac14ab1f5b046d9767
MD5 e65f8ef19985c5401b5de4c83de8ee4d
BLAKE2b-256 373552b3555671dfbd5cff07d23f715d6da31c93f302ae9c83d6f7d529013afd

See more details on using hashes here.

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