pydantic_graph.mermaid
DEFAULT_HIGHLIGHT_CSS
module-attribute
DEFAULT_HIGHLIGHT_CSS = 'fill:#fdff32'
The default CSS to use for highlighting nodes.
generate_code
generate_code(
graph: Graph[Any, Any, Any],
/,
*,
start_node: (
Sequence[NodeIdent] | NodeIdent | None
) = None,
highlighted_nodes: (
Sequence[NodeIdent] | NodeIdent | None
) = None,
highlight_css: str = DEFAULT_HIGHLIGHT_CSS,
title: str | None = None,
edge_labels: bool = True,
notes: bool = True,
) -> str
Generate Mermaid state diagram code for a graph.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
graph
|
Graph[Any, Any, Any]
|
The graph to generate the image for. |
required |
start_node
|
Sequence[NodeIdent] | NodeIdent | None
|
Identifiers of nodes that start the graph. |
None
|
highlighted_nodes
|
Sequence[NodeIdent] | NodeIdent | None
|
Identifiers of nodes to highlight. |
None
|
highlight_css
|
str
|
CSS to use for highlighting nodes. |
DEFAULT_HIGHLIGHT_CSS
|
title
|
str | None
|
The title of the diagram. |
None
|
edge_labels
|
bool
|
Whether to include edge labels in the diagram. |
True
|
notes
|
bool
|
Whether to include notes in the diagram. |
True
|
Returns:
Type | Description |
---|---|
str
|
The Mermaid code for the graph. |
Source code in pydantic_graph/pydantic_graph/mermaid.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
request_image
Generate an image of a Mermaid diagram using mermaid.ink.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
graph
|
Graph[Any, Any, Any]
|
The graph to generate the image for. |
required |
**kwargs
|
Unpack[MermaidConfig]
|
Additional parameters to configure mermaid chart generation. |
{}
|
Returns:
Type | Description |
---|---|
bytes
|
The image data. |
Source code in pydantic_graph/pydantic_graph/mermaid.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
save_image
save_image(
path: Path | str,
graph: Graph[Any, Any, Any],
/,
**kwargs: Unpack[MermaidConfig],
) -> None
Generate an image of a Mermaid diagram using mermaid.ink and save it to a local file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
Path | str
|
The path to save the image to. |
required |
graph
|
Graph[Any, Any, Any]
|
The graph to generate the image for. |
required |
**kwargs
|
Unpack[MermaidConfig]
|
Additional parameters to configure mermaid chart generation. |
{}
|
Source code in pydantic_graph/pydantic_graph/mermaid.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
MermaidConfig
Bases: TypedDict
Parameters to configure mermaid chart generation.
Source code in pydantic_graph/pydantic_graph/mermaid.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
|
start_node
instance-attribute
Identifiers of nodes that start the graph.
highlighted_nodes
instance-attribute
Identifiers of nodes to highlight.
notes
instance-attribute
notes: bool
Whether to include notes on nodes in the diagram, defaults to true.
image_type
instance-attribute
image_type: Literal['jpeg', 'png', 'webp', 'svg', 'pdf']
The image type to generate. If unspecified, the default behavior is 'jpeg'
.
pdf_fit
instance-attribute
pdf_fit: bool
When using image_type='pdf', whether to fit the diagram to the PDF page.
pdf_landscape
instance-attribute
pdf_landscape: bool
When using image_type='pdf', whether to use landscape orientation for the PDF.
This has no effect if using pdf_fit
.
pdf_paper
instance-attribute
pdf_paper: Literal[
"letter",
"legal",
"tabloid",
"ledger",
"a0",
"a1",
"a2",
"a3",
"a4",
"a5",
"a6",
]
When using image_type='pdf', the paper size of the PDF.
background_color
instance-attribute
background_color: str
The background color of the diagram.
If None, the default transparent background is used. The color value is interpreted as a hexadecimal color
code by default (and should not have a leading '#'), but you can also use named colors by prefixing the
value with '!'
. For example, valid choices include background_color='!white'
or background_color='FF0000'
.
theme
instance-attribute
theme: Literal['default', 'neutral', 'dark', 'forest']
The theme of the diagram. Defaults to 'default'.
scale
instance-attribute
The scale of the diagram.
The scale must be a number between 1 and 3, and you can only set a scale if one or both of width and height are set.
httpx_client
instance-attribute
httpx_client: Client
An HTTPX client to use for requests, mostly for testing purposes.