# here's a simple example to get started # click the "Generate Diagram" button to see the result # or visit Docs & Examples for more examples #include your Providers from diagrams import Diagram from diagrams.aws.compute import EC2 from diagrams.aws.database import RDS from diagrams.aws.network import ELB # Construct a diagram and provide a name # N.B. #### # Diagram names = file names and persist for 5 minutes # Use unique names for faster updates with Diagram("Simple Web Service"): # Specify your Nodes, Flows, Clusters, etc. ELB("lb") >> EC2("web") >> RDS("userdb") # pyDraw does not support... # jupyter notebooks # output formats aside from png # a few other things that are noted in the Docs

Preview

Your diagram will appear here