Carl Chesser
@che55er | che55er.io |
License: Common Public License Version 1.0
digraph G {
rankdir="LR"
db[shape="cylinder"];
a -> b -> db;
b -> c -> db;
}
flowchart LR
a --> b --> id1[(d)]
b --> c
c --> id1[(d)]
%%{init: {'theme': 'dark', 'themeVariables': { 'darkMode': true }}}%% flowchart LR a --> b --> id1[(d)] b --> c c --> id1[(d)]
Support for many different types of diagrams.
VSCode | GitHub |
Even understood by generative systems (ChatGPT).
from diagrams import Diagram
from diagrams.aws.compute import EC2
from diagrams.aws.database import RDS
from diagrams.aws.network import ELB
with diagrams.Diagram("services"):
b_service = EC2("b")
db = RDS("db")
ELB("a") >> b_service >> db
b_service >> EC2("c") >> db
Large inventory of iconography.
direction: right
a -> b -> db
b -> c -> db
db.shape: cylinder
Different styles with animated flows!