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
d2_code = render_d2([User, Post])
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
  --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.2.tar.gz (42.8 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.2-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for pydantic_diagram-0.1.2.tar.gz
Algorithm Hash digest
SHA256 af5e1efc0337eba746c01b230081f1f3b14a1d581b86c29dcd6c5f265634cb5a
MD5 cdf845eb7d65a9b6b1d62268f88a89f3
BLAKE2b-256 79bef389069b47bcd31c8a8ec54fc09f72a845f406f10922b0a864b70b34d158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_diagram-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a455974f55446a1ffad2ed466797d048b575fb348c015abbf86a86fe638625c5
MD5 a24a4e1b831f61285769f1e76c919ad7
BLAKE2b-256 cadf378e7093a88c388fd39b9eec05cfd8e64b21784cd2273bd9f55fccfc8dac

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