DEV Community

Cover image for Visualizing Architecture with Python's `diagrams` Library
Developer Service
Developer Service

Posted on • Originally published at developer-service.blog

Visualizing Architecture with Python's `diagrams` Library

In software development, effectively communicating architecture is as crucial as the construction of the architecture itself.

Traditional diagramming tools have served us well, but what if you could generate architecture diagrams as code, making them versionable, reproducible, and as dynamic as your application?

Enter the Python diagrams library, a game-changer for architects and developers.


What is the diagrams Library?

The diagrams library is a Python package that allows you to create cloud and on-premises architecture diagrams using just Python code.

Built on top of Graphviz, it offers a simple yet powerful API to generate beautiful, informative diagrams programmatically.

This means your diagrams can live alongside your codebase, evolving as your architecture evolves.


Key Features

  • Code-based Diagramming: Define diagrams in Python code, making them easy to track, version, and update.
  • Wide Range of Providers: Supports major cloud providers like AWS, GCP, Azure, and others, along with generic nodes.
  • Flexibility: Easily customize your diagrams with different attributes, styles, and layouts to best convey your architecture.

Getting Started

Before diving into creating diagrams, ensure you install Python on your system and install the diagrams library along with Graphviz, which is a dependency.

pip install diagrams

# And Graphviz, which may vary by OS. For example, on Ubuntu:
sudo apt-get install graphviz
Enter fullscreen mode Exit fullscreen mode

Example: Simple Web Application Architecture

Let's create a basic diagram illustrating a web application's architecture with a web server, a database, and static content storage.

from diagrams import Diagram
from diagrams.aws.compute import EC2
from diagrams.aws.database import RDS
from diagrams.aws.storage import S3

with Diagram("Simple Web Application", show=False):
    web_server = EC2("Web Server")
    database = RDS("Database")
    static_storage = S3("Static Content")

    web_server >> database
    web_server >> static_storage
Enter fullscreen mode Exit fullscreen mode

This script generates a PNG image named simple_web_application.png, depicting the web server connected to the database and static content storage:'

Simple Web Application

A More Complex Example

Building on the basics, you can illustrate more detailed architectures. For instance, adding a caching layer and a load balancer to the previous example can provide insights into a more production-ready environment.

from diagrams import Diagram
from diagrams.aws.compute import EC2, EB
from diagrams.aws.database import RDS
from diagrams.aws.network import CloudFront
from diagrams.aws.storage import S3

with Diagram("Enhanced Web Application", show=False):
    lb = EB("Load Balancer")
    web_server = EC2("Web Server")
    cache = CloudFront("Cache")
    database = RDS("Database")
    static_storage = S3("Static Content")

    lb >> web_server >> database
    web_server >> cache
    web_server >> static_storage
Enter fullscreen mode Exit fullscreen mode

This script enhances our web application diagram with a load balancer and cache, reflecting a scalable and performant architecture:

Enhanced Web Application


Conclusion

The diagrams library revolutionizes how we create and maintain architecture diagrams.

By integrating diagrams into the development process, teams can ensure their documentation keeps pace with their architectures.

Whether you're documenting an existing system, planning a new one, or just need a quick visual aid for a presentation, the diagrams library offers a flexible, code-based solution to meet your diagramming needs.

Embrace the power of visual documentation with diagrams and elevate your architecture communication to the next level.

Top comments (0)