Skip to content

Diagrams and components

c4.diagrams.core.BaseDiagramElement

Base class for any object that belongs to a diagram.

Provides access to the current diagram context and allows attaching structured properties (e.g. key-value tables).

Source code in c4/diagrams/core.py
197
198
199
200
201
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
class BaseDiagramElement:
    """
    Base class for any object that belongs to a diagram.

    Provides access to the current diagram context and allows
    attaching structured properties (e.g. key-value tables).
    """

    _diagram: Diagram

    def __init__(self) -> None:
        """
        Initializes the element and adds it to the current diagram context.
        """
        self._diagram = current_diagram()
        self._contribute_to_diagram()
        self.properties = DiagramElementProperties()

    def _contribute_to_diagram(self) -> None:
        self._diagram.add_base_element(self)

    def set_property_header(self, *args: str) -> Self:
        """
        Sets the column headers for the element's property table.

        This must be called before adding any property rows.

        Args:
            *args: Column names to use as the property header.

        Returns:
            The updated diagram element.

        Raises:
            ValueError: If properties were already added before setting
                the header.
        """
        if not args:
            raise ValueError("The header cannot be empty")

        if self.properties.properties:
            raise ValueError(
                "Cannot change header after properties have been added. "
                "Set the header before calling add_property()."
            )

        self.properties.header = list(args)

        return self

    def without_property_header(self) -> Self:
        """
        Disables the rendering of the header row in the property table.

        Returns:
            The updated diagram element.
        """
        self.properties.show_header = False

        return self

    def add_property(self, *args: str) -> Self:
        """
        Adds a row to the property table.

        The number of arguments must match the number of header columns.

        Args:
            *args: Values for each column in the property row.

        Returns:
            The updated diagram element.

        Raises:
            ValueError: If the number of values does not match the
                header length.
        """
        if len(args) != len(self.properties.header):
            raise ValueError(
                "The number of values does not match the header length"
            )

        self.properties.properties.append(list(args))

        return self

set_property_header

set_property_header(*args: str) -> Self

Sets the column headers for the element's property table.

This must be called before adding any property rows.

Parameters:

Name Type Description Default
*args str

Column names to use as the property header.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If properties were already added before setting the header.

Source code in c4/diagrams/core.py
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
def set_property_header(self, *args: str) -> Self:
    """
    Sets the column headers for the element's property table.

    This must be called before adding any property rows.

    Args:
        *args: Column names to use as the property header.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If properties were already added before setting
            the header.
    """
    if not args:
        raise ValueError("The header cannot be empty")

    if self.properties.properties:
        raise ValueError(
            "Cannot change header after properties have been added. "
            "Set the header before calling add_property()."
        )

    self.properties.header = list(args)

    return self

without_property_header

without_property_header() -> Self

Disables the rendering of the header row in the property table.

Returns:

Type Description
Self

The updated diagram element.

Source code in c4/diagrams/core.py
247
248
249
250
251
252
253
254
255
256
def without_property_header(self) -> Self:
    """
    Disables the rendering of the header row in the property table.

    Returns:
        The updated diagram element.
    """
    self.properties.show_header = False

    return self

add_property

add_property(*args: str) -> Self

Adds a row to the property table.

The number of arguments must match the number of header columns.

Parameters:

Name Type Description Default
*args str

Values for each column in the property row.

()

Returns:

Type Description
Self

The updated diagram element.

Raises:

Type Description
ValueError

If the number of values does not match the header length.

Source code in c4/diagrams/core.py
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
def add_property(self, *args: str) -> Self:
    """
    Adds a row to the property table.

    The number of arguments must match the number of header columns.

    Args:
        *args: Values for each column in the property row.

    Returns:
        The updated diagram element.

    Raises:
        ValueError: If the number of values does not match the
            header length.
    """
    if len(args) != len(self.properties.header):
        raise ValueError(
            "The number of values does not match the header length"
        )

    self.properties.properties.append(list(args))

    return self

c4.diagrams.core.Element

Bases: BaseDiagramElement, ABC

Base class for all C4 elements (e.g. Person, System, Container, Component).

Elements are automatically registered in the current diagram context.

Source code in c4/diagrams/core.py
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
class Element(BaseDiagramElement, abc.ABC):
    """
    Base class for all C4 elements (e.g. Person, System, Container, Component).

    Elements are automatically registered in the current diagram context.
    """

    _diagram: Diagram

    alias: str
    label: str

    def __init__(
        self,
        label: str | Required = not_provided,
        description: str = "",
        sprite: str = "",
        tags: str = "",
        link: str = "",
        type_: str = "",
        alias: str | EmptyStr = empty,
    ) -> None:
        """
        Initialize a new diagram element. Automatically adds the element to the
        current diagram.

        Args:
            label: Display name for the element. Required.
            description: Optional description text.
            sprite: Optional sprite/icon reference for rendering.
            tags: Optional comma-separated tags for grouping/styling.
            link: Optional URL associated with the element.
            type_: Optional custom type or stereotype label.
            alias: Unique identifier for the element. If not provided, it is
                autogenerated from the label.

        Raises:
            ValueError: If `label` is not provided.
        """
        self.label = self._check_label(label)
        self.alias = self._check_alias(alias, self.label)
        self.sprite = sprite
        self.type = type_
        self.tags = tags
        self.link = link

        self.description = description
        self.base_shape = ""
        self.technology = ""

        super().__init__()

    def __rshift__(self, other: Any) -> Any:
        """
        Enables:
          - Self >> "label" >> Element2   (pending relationship)
          - Self >> Element2 | "label"    (draft for later '| "label"')
        """
        if isinstance(other, str):
            # self >> "label" >> element2
            return Relationship(label=other, from_element=self)

        if isinstance(other, Element):
            # Draft for: self >> element2 | "label"
            return _EdgeDraft(source=self, destination=other)

        return NotImplemented

    def __lshift__(self, other: Any) -> Any:
        """
        Enables:
          - Element2 << "label" << Self   (pending relationship)
          - Element2 << self | "label"      (draft for later '| "label"')
        """
        if isinstance(other, str):
            # element1 << "label" << element2
            return Relationship(label=other, to_element=self)

        if isinstance(other, Element):
            # Draft for: element1 >> element2 | "label"
            return _EdgeDraft(source=other, destination=self)

        return NotImplemented

    def __rrshift__(self, other: Any) -> Any:
        """
        Enables: [Relationship(...), ...] >> Element.
        """
        if isinstance(other, list) and all(
            isinstance(r, Relationship) for r in other
        ):
            return [r._connect(r.from_element, destination=self) for r in other]

        return NotImplemented  # pragma: no cover

    def __rlshift__(self, other: Any) -> Any:
        """
        Enables: Element << [Relationship(...), ...].
        """
        if isinstance(other, list) and all(
            isinstance(r, Relationship) for r in other
        ):
            return [
                r._connect(source=self, destination=r.to_element) for r in other
            ]

        return NotImplemented  # pragma: no cover

    def _check_label(self, label: str | Required) -> str:
        if label is not_provided:
            raise ValueError("The 'label' argument is required")

        return cast(str, label)

    def _check_alias(self, alias: str | EmptyStr, label: str) -> str:
        if alias is empty:
            alias = self._generate_alias(label)

        return cast(str, alias)

    @override
    def _contribute_to_diagram(self) -> None:
        self._diagram.add(self)

    def uses(
        self,
        other: Element,
        label: str,
        relationship_type: RelationshipType = RelationshipType.REL,
        **kwargs: Any,
    ) -> Relationship:
        """
        Declare that this element uses another.

        Args:
            other: The element being used.
            label: Description of the interaction.
            relationship_type: Type of arrow to use.
            kwargs: Optional relationship kwargs.

        Returns:
            The created relationship.
        """
        relationship_class = Relationship.get_relationship_by_type(
            relationship_type
        )
        return relationship_class(
            from_element=self,
            to_element=other,
            label=label,
            **kwargs,
        )

    def used_by(
        self,
        other: Element,
        label: str,
        relationship_type: RelationshipType = RelationshipType.REL,
        **kwargs: Any,
    ) -> Relationship:
        """
        Declare that another element uses this element.

        Args:
            other: The element that uses this element.
            label: Description of the interaction.
            relationship_type: Type of arrow to use.
            kwargs: Optional relationship kwargs.

        Returns:
            The created relationship.
        """
        relationship_class = Relationship.get_relationship_by_type(
            relationship_type
        )
        return relationship_class(
            from_element=other,
            to_element=self,
            label=label,
            **kwargs,
        )

    def _generate_alias(self, label: str) -> str:
        alias = label.lower().replace(" ", "_").replace("-", "_")
        return alias + "_" + uuid4().hex[:4]

    @override
    def __str__(self) -> str:
        """Returns the string representation of the element."""
        cls_name = self.__class__.__name__
        return f"{cls_name}(alias={self.alias!r}, label={self.label!r})"

__init__

__init__(
    label: str | Required = not_provided,
    description: str = "",
    sprite: str = "",
    tags: str = "",
    link: str = "",
    type_: str = "",
    alias: str | EmptyStr = empty,
) -> None

Parameters:

Name Type Description Default
label str | Required

Display name for the element. Required.

not_provided
description str

Optional description text.

''
sprite str

Optional sprite/icon reference for rendering.

''
tags str

Optional comma-separated tags for grouping/styling.

''
link str

Optional URL associated with the element.

''
type_ str

Optional custom type or stereotype label.

''
alias str | EmptyStr

Unique identifier for the element. If not provided, it is autogenerated from the label.

empty

Raises:

Type Description
ValueError

If label is not provided.

Source code in c4/diagrams/core.py
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
def __init__(
    self,
    label: str | Required = not_provided,
    description: str = "",
    sprite: str = "",
    tags: str = "",
    link: str = "",
    type_: str = "",
    alias: str | EmptyStr = empty,
) -> None:
    """
    Initialize a new diagram element. Automatically adds the element to the
    current diagram.

    Args:
        label: Display name for the element. Required.
        description: Optional description text.
        sprite: Optional sprite/icon reference for rendering.
        tags: Optional comma-separated tags for grouping/styling.
        link: Optional URL associated with the element.
        type_: Optional custom type or stereotype label.
        alias: Unique identifier for the element. If not provided, it is
            autogenerated from the label.

    Raises:
        ValueError: If `label` is not provided.
    """
    self.label = self._check_label(label)
    self.alias = self._check_alias(alias, self.label)
    self.sprite = sprite
    self.type = type_
    self.tags = tags
    self.link = link

    self.description = description
    self.base_shape = ""
    self.technology = ""

    super().__init__()

uses

uses(
    other: Element,
    label: str,
    relationship_type: RelationshipType = REL,
    **kwargs: Any,
) -> Relationship

Declare that this element uses another.

Parameters:

Name Type Description Default
other Element

The element being used.

required
label str

Description of the interaction.

required
relationship_type RelationshipType

Type of arrow to use.

REL
kwargs Any

Optional relationship kwargs.

{}

Returns:

Type Description
Relationship

The created relationship.

Source code in c4/diagrams/core.py
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
def uses(
    self,
    other: Element,
    label: str,
    relationship_type: RelationshipType = RelationshipType.REL,
    **kwargs: Any,
) -> Relationship:
    """
    Declare that this element uses another.

    Args:
        other: The element being used.
        label: Description of the interaction.
        relationship_type: Type of arrow to use.
        kwargs: Optional relationship kwargs.

    Returns:
        The created relationship.
    """
    relationship_class = Relationship.get_relationship_by_type(
        relationship_type
    )
    return relationship_class(
        from_element=self,
        to_element=other,
        label=label,
        **kwargs,
    )

used_by

used_by(
    other: Element,
    label: str,
    relationship_type: RelationshipType = REL,
    **kwargs: Any,
) -> Relationship

Declare that another element uses this element.

Parameters:

Name Type Description Default
other Element

The element that uses this element.

required
label str

Description of the interaction.

required
relationship_type RelationshipType

Type of arrow to use.

REL
kwargs Any

Optional relationship kwargs.

{}

Returns:

Type Description
Relationship

The created relationship.

Source code in c4/diagrams/core.py
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
def used_by(
    self,
    other: Element,
    label: str,
    relationship_type: RelationshipType = RelationshipType.REL,
    **kwargs: Any,
) -> Relationship:
    """
    Declare that another element uses this element.

    Args:
        other: The element that uses this element.
        label: Description of the interaction.
        relationship_type: Type of arrow to use.
        kwargs: Optional relationship kwargs.

    Returns:
        The created relationship.
    """
    relationship_class = Relationship.get_relationship_by_type(
        relationship_type
    )
    return relationship_class(
        from_element=other,
        to_element=self,
        label=label,
        **kwargs,
    )

c4.diagrams.core.ElementWithTechnology

Bases: Element

Base class for elements that define a technology field.

Source code in c4/diagrams/core.py
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
class ElementWithTechnology(Element):
    """
    Base class for elements that define a `technology` field.
    """

    def __init__(
        self,
        label: str | Required = not_provided,
        description: str = "",
        technology: str = "",
        sprite: str = "",
        tags: str = "",
        link: str = "",
        alias: str | EmptyStr = empty,
    ) -> None:
        """
        Initialize a new diagram element.

        Args:
            label: Display name for the element. Required.
            description: Optional description text.
            technology: Optional technology.
            sprite: Optional sprite/icon reference for rendering.
            tags: Optional comma-separated tags for grouping/styling.
            link: Optional URL associated with the element.
            alias: Unique identifier for the element. If not provided, it is
                autogenerated from the label.
        """
        super().__init__(
            alias=alias,
            label=label,
            description=description,
            sprite=sprite,
            tags=tags,
            link=link,
        )

        self.technology = technology

__init__

__init__(
    label: str | Required = not_provided,
    description: str = "",
    technology: str = "",
    sprite: str = "",
    tags: str = "",
    link: str = "",
    alias: str | EmptyStr = empty,
) -> None

Parameters:

Name Type Description Default
label str | Required

Display name for the element. Required.

not_provided
description str

Optional description text.

''
technology str

Optional technology.

''
sprite str

Optional sprite/icon reference for rendering.

''
tags str

Optional comma-separated tags for grouping/styling.

''
link str

Optional URL associated with the element.

''
alias str | EmptyStr

Unique identifier for the element. If not provided, it is autogenerated from the label.

empty
Source code in c4/diagrams/core.py
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
def __init__(
    self,
    label: str | Required = not_provided,
    description: str = "",
    technology: str = "",
    sprite: str = "",
    tags: str = "",
    link: str = "",
    alias: str | EmptyStr = empty,
) -> None:
    """
    Initialize a new diagram element.

    Args:
        label: Display name for the element. Required.
        description: Optional description text.
        technology: Optional technology.
        sprite: Optional sprite/icon reference for rendering.
        tags: Optional comma-separated tags for grouping/styling.
        link: Optional URL associated with the element.
        alias: Unique identifier for the element. If not provided, it is
            autogenerated from the label.
    """
    super().__init__(
        alias=alias,
        label=label,
        description=description,
        sprite=sprite,
        tags=tags,
        link=link,
    )

    self.technology = technology

c4.diagrams.core.Boundary

Bases: Element

Represents a boundary element that groups other elements.

Boundaries can be nested, and manage their own child elements.

Source code in c4/diagrams/core.py
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
class Boundary(Element):
    """
    Represents a boundary element that groups other elements.

    Boundaries can be nested, and manage their own child elements.
    """

    def __init__(
        self,
        label: str | Required = not_provided,
        description: str = "",
        type_: str = "",
        tags: str = "",
        link: str = "",
        alias: str | EmptyStr = empty,
    ) -> None:
        """
        Initialize a new boundary element.

        Args:
            label: Human-readable name for the boundary. Required.
            description: Optional description.
            type_: Optional stereotype or visual marker.
            tags: Optional comma-separated tags for styling or grouping.
            link: Optional hyperlink associated with the boundary.
            alias: Unique identifier for the boundary.
                If not provided, one is autogenerated.

        Notes:
            - If the boundary is created within another boundary context, it is
              added as a nested boundary.
            - Otherwise, it is added directly to the current diagram.
        """
        self._parent = get_boundary()

        super().__init__(
            label=label,
            alias=alias,
            description=description,
            type_=type_,
            tags=tags,
            link=link,
        )

        self._elements: list[Element] = []
        self._relationships: list[Relationship] = []
        self._boundaries: list[Boundary] = []

    @override
    def _contribute_to_diagram(self) -> None:
        if self._parent:
            self._parent.add_boundary(self)
        else:
            self._diagram.add_boundary(self)

    @property
    def elements(self) -> list[Element]:
        """
        Returns the list of diagram elements added to this boundary.

        Returns:
            Child elements grouped under this boundary.
        """
        return self._elements

    @property
    def boundaries(self) -> list[Boundary]:
        """
        Returns the list of nested boundaries inside this boundary.

        Returns:
            Child boundaries nested within this boundary.
        """
        return self._boundaries

    @property
    def relationships(self) -> list[Relationship]:
        """
        Returns all relationships defined in the boundary.
        """
        return self._relationships

    def __enter__(self) -> Self:
        """
        Enter the boundary context.

        Returns:
            The boundary instance now active as context.
        """
        set_boundary(self)
        return self

    def __exit__(
        self,
        exc_type: type[BaseException] | None,
        exc_value: BaseException | None,
        traceback: TracebackType | None,
    ) -> None:
        """
        Exit the boundary context and restore the previous boundary.
        """
        set_boundary(self._parent)

    def add(self, element: _TElement) -> _TElement:
        """
        Add a diagram element to this boundary.

        Args:
            element: The element to add.

        Returns:
            The added element.
        """
        self._elements.append(element)

        return element

    def add_boundary(self, boundary: _TBoundary) -> _TBoundary:
        """
        Add a nested boundary to this boundary.

        Args:
            boundary: The boundary to add.

        Returns:
            The added boundary.
        """
        self._boundaries.append(boundary)

        return boundary

    def add_relationship(self, relationship: _TRelationship) -> _TRelationship:
        """
        Add a relationship between elements.

        Args:
            relationship: The relationship to add.

        Returns:
            The added relationship.
        """
        self._relationships.append(relationship)

        return relationship

__init__

__init__(
    label: str | Required = not_provided,
    description: str = "",
    type_: str = "",
    tags: str = "",
    link: str = "",
    alias: str | EmptyStr = empty,
) -> None

Parameters:

Name Type Description Default
label str | Required

Human-readable name for the boundary. Required.

not_provided
description str

Optional description.

''
type_ str

Optional stereotype or visual marker.

''
tags str

Optional comma-separated tags for styling or grouping.

''
link str

Optional hyperlink associated with the boundary.

''
alias str | EmptyStr

Unique identifier for the boundary. If not provided, one is autogenerated.

empty
Notes
  • If the boundary is created within another boundary context, it is added as a nested boundary.
  • Otherwise, it is added directly to the current diagram.
Source code in c4/diagrams/core.py
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
def __init__(
    self,
    label: str | Required = not_provided,
    description: str = "",
    type_: str = "",
    tags: str = "",
    link: str = "",
    alias: str | EmptyStr = empty,
) -> None:
    """
    Initialize a new boundary element.

    Args:
        label: Human-readable name for the boundary. Required.
        description: Optional description.
        type_: Optional stereotype or visual marker.
        tags: Optional comma-separated tags for styling or grouping.
        link: Optional hyperlink associated with the boundary.
        alias: Unique identifier for the boundary.
            If not provided, one is autogenerated.

    Notes:
        - If the boundary is created within another boundary context, it is
          added as a nested boundary.
        - Otherwise, it is added directly to the current diagram.
    """
    self._parent = get_boundary()

    super().__init__(
        label=label,
        alias=alias,
        description=description,
        type_=type_,
        tags=tags,
        link=link,
    )

    self._elements: list[Element] = []
    self._relationships: list[Relationship] = []
    self._boundaries: list[Boundary] = []

elements property

elements: list[Element]

Returns the list of diagram elements added to this boundary.

Returns:

Type Description
list[Element]

Child elements grouped under this boundary.

boundaries property

boundaries: list[Boundary]

Returns the list of nested boundaries inside this boundary.

Returns:

Type Description
list[Boundary]

Child boundaries nested within this boundary.

relationships property

relationships: list[Relationship]

Returns all relationships defined in the boundary.

__enter__

__enter__() -> Self

Enter the boundary context.

Returns:

Type Description
Self

The boundary instance now active as context.

Source code in c4/diagrams/core.py
883
884
885
886
887
888
889
890
891
def __enter__(self) -> Self:
    """
    Enter the boundary context.

    Returns:
        The boundary instance now active as context.
    """
    set_boundary(self)
    return self

__exit__

__exit__(
    exc_type: type[BaseException] | None,
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None

Exit the boundary context and restore the previous boundary.

Source code in c4/diagrams/core.py
893
894
895
896
897
898
899
900
901
902
def __exit__(
    self,
    exc_type: type[BaseException] | None,
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None:
    """
    Exit the boundary context and restore the previous boundary.
    """
    set_boundary(self._parent)

c4.diagrams.core.RelationshipType

Bases: StrEnum

Enum representing different types of relationships between diagram elements.

Source code in c4/diagrams/core.py
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
@unique
class RelationshipType(StrEnum):
    """
    Enum representing different types of relationships between
    diagram elements.
    """

    REL = "REL"
    BI_REL = "BI_REL"
    REL_BACK = "REL_BACK"
    REL_NEIGHBOR = "REL_NEIGHBOR"
    BI_REL_NEIGHBOR = "BI_REL_NEIGHBOR"
    REL_BACK_NEIGHBOR = "REL_BACK_NEIGHBOR"
    REL_D = "REL_D"
    REL_DOWN = "REL_DOWN"
    BI_REL_D = "BI_REL_D"
    BI_REL_DOWN = "BI_REL_DOWN"
    REL_U = "REL_U"
    REL_UP = "REL_UP"
    BI_REL_U = "BI_REL_U"
    BI_REL_UP = "BI_REL_UP"
    REL_L = "REL_L"
    REL_LEFT = "REL_LEFT"
    BI_REL_L = "BI_REL_L"
    BI_REL_LEFT = "BI_REL_LEFT"
    REL_R = "REL_R"
    REL_RIGHT = "REL_RIGHT"
    BI_REL_R = "BI_REL_R"
    BI_REL_RIGHT = "BI_REL_RIGHT"
    SEQUENCE_DIAGRAM_MESSAGE = "SEQUENCE_DIAGRAM_MESSAGE"

c4.diagrams.core.Relationship

Bases: BaseDiagramElement

Represents a connection between two elements.

Supports fluent chaining using >> and << operators, and subclass registration for each RelationshipType.

Source code in c4/diagrams/core.py
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
class Relationship(BaseDiagramElement):
    """
    Represents a connection between two elements.

    Supports fluent chaining using `>>` and `<<` operators, and
    subclass registration for each `RelationshipType`.
    """

    __relationship_by_type: ClassVar[
        dict[RelationshipType, type[Relationship]]
    ] = {}

    relationship_type: RelationshipType = RelationshipType.REL

    def __init__(
        self,
        label: str,
        description: str = "",
        technology: str = "",
        sprite: str = "",
        tags: str = "",
        link: str = "",
        index: str | BaseIndex | None = None,
        from_element: Element | None = None,
        to_element: Element | None = None,
        relationship_type: RelationshipType | None = None,
    ) -> None:
        """
        Initialize a relationship between two elements.

        Args:
            label: The label shown on the relationship edge.
            description: Additional details about the relationship.
            technology: The technology used in the communication.
            sprite: Optional sprite to represent the relationship.
            tags: Comma-separated tags for styling or grouping.
            link: URL link associated with the relationship.
            index: Index associated with the relationship.
            from_element: The source element. Optional.
            to_element: The destination element. Optional.
            relationship_type: Type of the relationship.
                Defaults to the class-level `relationship_type`.

        Notes:
            If both `from_element` and `to_element` are provided,
            the relationship will be registered in the current
            diagram immediately.
        """
        self.from_element = from_element
        self.to_element = to_element
        self.label = label
        self.technology = technology
        self.description = description
        self.sprite = sprite
        self.tags = tags
        self.link = link
        self.index = index

        self.relationship_type = relationship_type or self.relationship_type

        super().__init__()

    @override
    def __init_subclass__(cls, *args: Any, **kwargs: Any) -> None:
        """
        Registers the relationship subclass under its unique
        `relationship_type`.
        """
        super().__init_subclass__(*args, **kwargs)

        relationship_type = getattr(cls, "relationship_type", None)
        if (
            relationship_type is None
            or relationship_type in cls.__relationship_by_type
        ):
            raise TypeError(
                f"Please provide an unique `relationship_type` for this"
                f" class {cls.__name__}"
            )

        cls.__relationship_by_type[relationship_type] = cls

    def __rshift__(
        self, other: Element | list[Element]
    ) -> Relationship | list[Relationship]:
        """Implements Self >> Element and Self >> [Element]."""
        self._ensure_not_completed()

        return self._connect(source=self.from_element, destination=other)

    def __lshift__(
        self, other: Element | list[Element]
    ) -> Relationship | list[Relationship]:
        """Implements Self << Element and Self << [Element]."""
        self._ensure_not_completed()

        return self._connect(source=other, destination=self.to_element)

    def __rrshift__(
        self, other: Element | list[Element]
    ) -> Relationship | list[Relationship]:
        """Called for [Element] >> Self or Element >> Self."""
        self._ensure_not_completed()

        return self._connect(source=other, destination=self.to_element)

    def __rlshift__(
        self, other: Element | list[Element]
    ) -> Relationship | list[Relationship]:
        """Called for [Element] << Self or Element << Self."""
        self._ensure_not_completed()

        return self._connect(source=self.from_element, destination=other)

    def _connect(
        self,
        source: Element | list[Element] | None,
        destination: Element | list[Element] | None,
    ) -> Relationship | list[Relationship]:
        self._ensure_not_completed()

        if not source and not destination:
            raise ValueError("Either source or destination must be provided")

        if isinstance(source, list) and isinstance(destination, list):
            raise ValueError(  # noqa: TRY004
                "Either source or destination must be a single element"
            )

        if isinstance(source, list):
            from_iter = source
            to_iter: Iterable[Element] = repeat(destination)  # type: ignore[arg-type]
        elif isinstance(destination, list):
            from_iter: Iterable[Element] = repeat(source)  # type: ignore[no-redef]
            to_iter = destination
        else:
            # Both are single elements
            return self.copy(from_element=source, to_element=destination)

        return [
            self.copy(from_element=src, to_element=dst)
            for src, dst in zip(from_iter, to_iter, strict=False)
        ]

    def _ensure_not_completed(self) -> None:
        if self.from_element and self.to_element:
            raise ValueError(
                "Cannot modify relationship with both specified elements"
            )

    @override
    def _contribute_to_diagram(self) -> None:
        if self.from_element and self.to_element:
            self._diagram.add_relationship(self)

    def get_attrs(self) -> dict[str, Any]:
        """
        Returns a dictionary of all relationship attributes.
        """
        return {
            "from_element": self.from_element,
            "to_element": self.to_element,
            "label": self.label,
            "technology": self.technology,
            "description": self.description,
            "sprite": self.sprite,
            "tags": self.tags,
            "link": self.link,
            "index": self.index,
            "relationship_type": self.relationship_type,
        }

    def copy(self, **overrides: Any) -> Relationship:
        """
        Clone the relationship, optionally overriding fields.
        """
        attrs = {**self.get_attrs(), **overrides}

        return Relationship(**attrs)

    @classmethod
    def get_relationship_by_type(
        cls, relationship_type: RelationshipType
    ) -> type[Relationship]:
        """
        Retrieve the relationship class associated with the
        given RelationshipType.

        Args:
            relationship_type: The enum value representing the
                type of relationship.

        Returns:
            The corresponding Relationship subclass.

        Raises:
            KeyError: If no class is registered for the provided
                relationship type.
        """
        return cls.__relationship_by_type[relationship_type]

__init__

__init__(
    label: str,
    description: str = "",
    technology: str = "",
    sprite: str = "",
    tags: str = "",
    link: str = "",
    index: str | BaseIndex | None = None,
    from_element: Element | None = None,
    to_element: Element | None = None,
    relationship_type: RelationshipType | None = None,
) -> None

Parameters:

Name Type Description Default
label str

The label shown on the relationship edge.

required
description str

Additional details about the relationship.

''
technology str

The technology used in the communication.

''
sprite str

Optional sprite to represent the relationship.

''
tags str

Comma-separated tags for styling or grouping.

''
link str

URL link associated with the relationship.

''
index str | BaseIndex | None

Index associated with the relationship.

None
from_element Element | None

The source element. Optional.

None
to_element Element | None

The destination element. Optional.

None
relationship_type RelationshipType | None

Type of the relationship. Defaults to the class-level relationship_type.

None
Notes

If both from_element and to_element are provided, the relationship will be registered in the current diagram immediately.

Source code in c4/diagrams/core.py
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
def __init__(
    self,
    label: str,
    description: str = "",
    technology: str = "",
    sprite: str = "",
    tags: str = "",
    link: str = "",
    index: str | BaseIndex | None = None,
    from_element: Element | None = None,
    to_element: Element | None = None,
    relationship_type: RelationshipType | None = None,
) -> None:
    """
    Initialize a relationship between two elements.

    Args:
        label: The label shown on the relationship edge.
        description: Additional details about the relationship.
        technology: The technology used in the communication.
        sprite: Optional sprite to represent the relationship.
        tags: Comma-separated tags for styling or grouping.
        link: URL link associated with the relationship.
        index: Index associated with the relationship.
        from_element: The source element. Optional.
        to_element: The destination element. Optional.
        relationship_type: Type of the relationship.
            Defaults to the class-level `relationship_type`.

    Notes:
        If both `from_element` and `to_element` are provided,
        the relationship will be registered in the current
        diagram immediately.
    """
    self.from_element = from_element
    self.to_element = to_element
    self.label = label
    self.technology = technology
    self.description = description
    self.sprite = sprite
    self.tags = tags
    self.link = link
    self.index = index

    self.relationship_type = relationship_type or self.relationship_type

    super().__init__()

get_attrs

get_attrs() -> dict[str, Any]

Returns a dictionary of all relationship attributes.

Source code in c4/diagrams/core.py
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
def get_attrs(self) -> dict[str, Any]:
    """
    Returns a dictionary of all relationship attributes.
    """
    return {
        "from_element": self.from_element,
        "to_element": self.to_element,
        "label": self.label,
        "technology": self.technology,
        "description": self.description,
        "sprite": self.sprite,
        "tags": self.tags,
        "link": self.link,
        "index": self.index,
        "relationship_type": self.relationship_type,
    }

copy

copy(**overrides: Any) -> Relationship

Clone the relationship, optionally overriding fields.

Source code in c4/diagrams/core.py
1380
1381
1382
1383
1384
1385
1386
def copy(self, **overrides: Any) -> Relationship:
    """
    Clone the relationship, optionally overriding fields.
    """
    attrs = {**self.get_attrs(), **overrides}

    return Relationship(**attrs)

get_relationship_by_type classmethod

get_relationship_by_type(
    relationship_type: RelationshipType,
) -> type[Relationship]

Retrieve the relationship class associated with the given RelationshipType.

Parameters:

Name Type Description Default
relationship_type RelationshipType

The enum value representing the type of relationship.

required

Returns:

Type Description
type[Relationship]

The corresponding Relationship subclass.

Raises:

Type Description
KeyError

If no class is registered for the provided relationship type.

Source code in c4/diagrams/core.py
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
@classmethod
def get_relationship_by_type(
    cls, relationship_type: RelationshipType
) -> type[Relationship]:
    """
    Retrieve the relationship class associated with the
    given RelationshipType.

    Args:
        relationship_type: The enum value representing the
            type of relationship.

    Returns:
        The corresponding Relationship subclass.

    Raises:
        KeyError: If no class is registered for the provided
            relationship type.
    """
    return cls.__relationship_by_type[relationship_type]

Note

You can find a detailed description of the different relationship types in the corresponding sections of the documentation.

c4.diagrams.core.Diagram

Represents a complete C4 diagram.

Manages the registration and layout of elements, boundaries, relationships, and renderers.

Source code in c4/diagrams/core.py
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
class Diagram:
    """
    Represents a complete C4 diagram.

    Manages the registration and layout of elements, boundaries,
    relationships, and renderers.
    """

    def __init__(
        self,
        title: str | None = None,
        default_renderer: BaseRenderer[Diagram] | None = None,
    ) -> None:
        """
        Initialize a new diagram.

        Args:
            title: Optional title to label the diagram.
            default_renderer: Optional default renderer to use for rendering.
        """
        self._title = title
        self._default_renderer = default_renderer
        self._elements: list[Element] = []
        self._boundaries: list[Boundary] = []
        self._relationships: list[Relationship] = []
        self._layouts: list[Layout] = []
        self._base_elements: list[BaseDiagramElement] = []

        self.__aliases: dict[str, Element] = {}

    def __enter__(self) -> Self:
        """
        Enter the diagram context.

        Automatically sets this diagram as the current active diagram.

        Returns:
            The current instance.
        """
        set_diagram(self)
        return self

    def __exit__(
        self,
        exc_type: type[BaseException] | None,
        exc_value: BaseException | None,
        traceback: TracebackType | None,
    ) -> None:
        """
        Exit the diagram context and clear the current diagram.
        """
        set_diagram(None)

    def _check_alias(self, element: Element) -> None:
        alias = element.alias

        if existing_element := self.__aliases.get(alias):
            raise ValueError(f"Duplicated alias {alias!r}: {existing_element}")

        if not alias.isidentifier():
            raise ValueError(
                f"Alias {alias!r} of {element} must be a valid identifier"
            )

        self.__aliases[alias] = element

    @property
    def title(self) -> str | None:
        """
        Returns the title of the diagram.
        """
        return self._title

    @property
    def elements(self) -> list[Element]:
        """
        Returns a list of top-level elements in the diagram.
        """
        return self._elements

    @property
    def base_elements(self) -> list[BaseDiagramElement]:
        """
        Returns a list of base elements of the diagram that should be rendered
        in a strict order.
        """
        return self._base_elements

    @property
    def boundaries(self) -> list[Boundary]:
        """
        Returns all top-level boundaries in the diagram.
        """
        return self._boundaries

    @property
    def layouts(self) -> list[Layout]:
        """
        Returns all layout constraints defined for the diagram.
        """
        return self._layouts

    @property
    def relationships(self) -> list[Relationship]:
        """
        Returns all relationships defined in the diagram.
        """
        return self._relationships

    def add_base_element(
        self, element: BaseDiagramElement
    ) -> BaseDiagramElement:
        """
        Add a base element to the diagram.

        rgs:
            element: The base element to add.

        Returns:
            The added base element.
        """
        self._base_elements.append(element)

        return element

    def add(self, element: _TElement) -> _TElement:
        """
        Add an element to the diagram or the currently active boundary.

        Args:
            element: The element to add.

        Returns:
            The added element.
        """
        self._check_alias(element)

        if boundary := get_boundary():
            boundary.add(element)
        else:
            self._elements.append(element)

        return element

    def add_boundary(self, boundary: _TBoundary) -> _TBoundary:
        """
        Add a top-level boundary to the diagram.

        Args:
            boundary: The boundary to add.

        Returns:
            The added boundary.
        """
        self._boundaries.append(boundary)

        return boundary

    def add_relationship(self, relationship: _TRelationship) -> _TRelationship:
        """
        Add a relationship between elements.

        Args:
            relationship: The relationship to add.

        Returns:
            The added relationship.
        """
        if boundary := get_boundary():
            boundary.add_relationship(relationship)
        else:
            self._relationships.append(relationship)

        return relationship

    def add_layout(self, layout: _TLayout) -> _TLayout:
        """
        Add a layout constraint between elements.

        Args:
            layout: The layout constraint to add.

        Returns:
            The added layout.
        """
        self._layouts.append(layout)

        return layout

    def as_plantuml(self, **kwargs: Any) -> str:
        """
        Render the diagram using the built-in PlantUML renderer.

        Args:
            **kwargs: Optional keyword arguments passed to the renderer.

        Returns:
            The rendered PlantUML code.
        """
        from c4.renderers import PlantUMLRenderer

        renderer = PlantUMLRenderer(**kwargs)
        return self.render(renderer)

    def render(self, renderer: BaseRenderer[Diagram] | None = None) -> str:
        """
        Render the diagram to a string using the given or default renderer.

        Args:
            renderer: Optional renderer to override the default.

        Returns:
            The rendered diagram output.

        Raises:
            ValueError: If no renderer is provided and no default
                renderer is set.
        """
        renderer = renderer or self._default_renderer
        if not renderer:
            raise ValueError("No renderer provided and no default_renderer set")

        return renderer.render(self)

    def save(
        self,
        path: str | Path,
        renderer: BaseRenderer[Diagram] | None = None,
    ) -> None:
        """
        Render and save the diagram to a file.

        Args:
            path: Target path to save the rendered output.
            renderer: Optional renderer to override the default.
        """
        path = Path(path)

        path.parent.mkdir(parents=True, exist_ok=True)

        content = self.render(renderer)

        path.write_text(content, encoding="utf-8")

    def save_as_plantuml(self, path: str | Path, **kwargs: Any) -> None:
        """
        Render and save the diagram using the PlantUML renderer.

        Args:
            path: Target file path.
            **kwargs: Optional kwargs passed to the PlantUML renderer.
        """
        from c4.renderers import PlantUMLRenderer

        renderer = PlantUMLRenderer(**kwargs)
        return self.save(path, renderer=renderer)

__init__

__init__(
    title: str | None = None,
    default_renderer: BaseRenderer[Diagram] | None = None,
) -> None

Parameters:

Name Type Description Default
title str | None

Optional title to label the diagram.

None
default_renderer BaseRenderer[Diagram] | None

Optional default renderer to use for rendering.

None
Source code in c4/diagrams/core.py
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
def __init__(
    self,
    title: str | None = None,
    default_renderer: BaseRenderer[Diagram] | None = None,
) -> None:
    """
    Initialize a new diagram.

    Args:
        title: Optional title to label the diagram.
        default_renderer: Optional default renderer to use for rendering.
    """
    self._title = title
    self._default_renderer = default_renderer
    self._elements: list[Element] = []
    self._boundaries: list[Boundary] = []
    self._relationships: list[Relationship] = []
    self._layouts: list[Layout] = []
    self._base_elements: list[BaseDiagramElement] = []

    self.__aliases: dict[str, Element] = {}

title property

title: str | None

Returns the title of the diagram.

elements property

elements: list[Element]

Returns a list of top-level elements in the diagram.

base_elements property

base_elements: list[BaseDiagramElement]

Returns a list of base elements of the diagram that should be rendered in a strict order.

boundaries property

boundaries: list[Boundary]

Returns all top-level boundaries in the diagram.

layouts property

layouts: list[Layout]

Returns all layout constraints defined for the diagram.

relationships property

relationships: list[Relationship]

Returns all relationships defined in the diagram.

__enter__

__enter__() -> Self

Enter the diagram context.

Automatically sets this diagram as the current active diagram.

Returns:

Type Description
Self

The current instance.

Source code in c4/diagrams/core.py
980
981
982
983
984
985
986
987
988
989
990
def __enter__(self) -> Self:
    """
    Enter the diagram context.

    Automatically sets this diagram as the current active diagram.

    Returns:
        The current instance.
    """
    set_diagram(self)
    return self

__exit__

__exit__(
    exc_type: type[BaseException] | None,
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None

Exit the diagram context and clear the current diagram.

Source code in c4/diagrams/core.py
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
def __exit__(
    self,
    exc_type: type[BaseException] | None,
    exc_value: BaseException | None,
    traceback: TracebackType | None,
) -> None:
    """
    Exit the diagram context and clear the current diagram.
    """
    set_diagram(None)

as_plantuml

as_plantuml(**kwargs: Any) -> str

Render the diagram using the built-in PlantUML renderer.

Parameters:

Name Type Description Default
**kwargs Any

Optional keyword arguments passed to the renderer.

{}

Returns:

Type Description
str

The rendered PlantUML code.

Source code in c4/diagrams/core.py
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
def as_plantuml(self, **kwargs: Any) -> str:
    """
    Render the diagram using the built-in PlantUML renderer.

    Args:
        **kwargs: Optional keyword arguments passed to the renderer.

    Returns:
        The rendered PlantUML code.
    """
    from c4.renderers import PlantUMLRenderer

    renderer = PlantUMLRenderer(**kwargs)
    return self.render(renderer)

render

render(
    renderer: BaseRenderer[Diagram] | None = None,
) -> str

Render the diagram to a string using the given or default renderer.

Parameters:

Name Type Description Default
renderer BaseRenderer[Diagram] | None

Optional renderer to override the default.

None

Returns:

Type Description
str

The rendered diagram output.

Raises:

Type Description
ValueError

If no renderer is provided and no default renderer is set.

Source code in c4/diagrams/core.py
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
def render(self, renderer: BaseRenderer[Diagram] | None = None) -> str:
    """
    Render the diagram to a string using the given or default renderer.

    Args:
        renderer: Optional renderer to override the default.

    Returns:
        The rendered diagram output.

    Raises:
        ValueError: If no renderer is provided and no default
            renderer is set.
    """
    renderer = renderer or self._default_renderer
    if not renderer:
        raise ValueError("No renderer provided and no default_renderer set")

    return renderer.render(self)

save

save(
    path: str | Path,
    renderer: BaseRenderer[Diagram] | None = None,
) -> None

Render and save the diagram to a file.

Parameters:

Name Type Description Default
path str | Path

Target path to save the rendered output.

required
renderer BaseRenderer[Diagram] | None

Optional renderer to override the default.

None
Source code in c4/diagrams/core.py
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
def save(
    self,
    path: str | Path,
    renderer: BaseRenderer[Diagram] | None = None,
) -> None:
    """
    Render and save the diagram to a file.

    Args:
        path: Target path to save the rendered output.
        renderer: Optional renderer to override the default.
    """
    path = Path(path)

    path.parent.mkdir(parents=True, exist_ok=True)

    content = self.render(renderer)

    path.write_text(content, encoding="utf-8")

save_as_plantuml

save_as_plantuml(path: str | Path, **kwargs: Any) -> None

Render and save the diagram using the PlantUML renderer.

Parameters:

Name Type Description Default
path str | Path

Target file path.

required
**kwargs Any

Optional kwargs passed to the PlantUML renderer.

{}
Source code in c4/diagrams/core.py
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
def save_as_plantuml(self, path: str | Path, **kwargs: Any) -> None:
    """
    Render and save the diagram using the PlantUML renderer.

    Args:
        path: Target file path.
        **kwargs: Optional kwargs passed to the PlantUML renderer.
    """
    from c4.renderers import PlantUMLRenderer

    renderer = PlantUMLRenderer(**kwargs)
    return self.save(path, renderer=renderer)

c4.diagrams.core.Layout

Bases: BaseDiagramElement, ABC

Represents a relative layout constraint between two elements.

Source code in c4/diagrams/core.py
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
class Layout(BaseDiagramElement, abc.ABC):
    """
    Represents a relative layout constraint between two elements.
    """

    layout_type: LayoutType

    def __init__(
        self,
        from_element: Element,
        to_element: Element,
    ) -> None:
        """
        Initialize a layout constraint between two elements.

        Args:
            from_element: The element to be positioned.
            to_element: The element to position relative to.

        Raises:
            ValueError: If `layout_type` is not provided and the subclass
                does not define a class-level ``layout_type``.
        """
        self.from_element = from_element
        self.to_element = to_element

        if not hasattr(self, "layout_type"):
            raise ValueError(
                "`layout_type` must be provided explicitly or defined as "
                "a class attribute"
            )

        super().__init__()

    @override
    def _contribute_to_diagram(self) -> None:
        self._diagram.add_layout(self)

__init__

__init__(
    from_element: Element, to_element: Element
) -> None

Parameters:

Name Type Description Default
from_element Element

The element to be positioned.

required
to_element Element

The element to position relative to.

required

Raises:

Type Description
ValueError

If layout_type is not provided and the subclass does not define a class-level layout_type.

Source code in c4/diagrams/core.py
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
def __init__(
    self,
    from_element: Element,
    to_element: Element,
) -> None:
    """
    Initialize a layout constraint between two elements.

    Args:
        from_element: The element to be positioned.
        to_element: The element to position relative to.

    Raises:
        ValueError: If `layout_type` is not provided and the subclass
            does not define a class-level ``layout_type``.
    """
    self.from_element = from_element
    self.to_element = to_element

    if not hasattr(self, "layout_type"):
        raise ValueError(
            "`layout_type` must be provided explicitly or defined as "
            "a class attribute"
        )

    super().__init__()

Note

You can find a detailed description of the different layout types in the corresponding sections of the documentation.