Skip to content

tonystark201/Architecture-blueprint-by-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Draw Arch blueprint using Python

Prepare

  • Install chocolately

    Introduction: Chocolatey has the largest online registry of Windows packages. Chocolatey packages encapsulate everything required to manage a particular piece of software into one deployment artifact by wrapping installers, executables, zips, and/or scripts into a compiled package file.

    So we use chocolately to install all the packages we needed in windows. It`s very easy to install what you needed.

    Open PowerShell within Adminstration permission.

    Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

    Install successfully if you can see something as below.

    PS C:\Windows\system32> choco --version
    1.1.0
  • Install graphviz

    choco install graphviz
  • Install diagrams

    Introduction: The Diagrams tool allows us to draw and generate system architecture diagrams using Python code. It was born to provide prototypes for those new system architecture designs without any design tools, and we can describe or visualize existing system architecture diagrams.

    Diagrams now supports the graphics including: AWS, Azure, Kubernetes, Ali Cloud, Oracle,etc.

    pipenv install diagrams

Draw Diagrams

The Diagrams library has four main components, namely diagrams, nodes, clusters, edges.

  1. The 1st core component of the Diagram library is a diagram

    1. filename: specify the file name
    2. outformat: Specify the image generation format
    3. show: whether to display automatically after running
    4. graph_attr: custom Graphviz attributes
    5. node_attr: custom Node attributes
    6. edge_attr: custom edge attributes
  2. The 2nd core component of the Diagram library is the node

    1. Node instance, consists of three parts with provider,resource type and name
    2. Data flow
      1. The connection node has no direction (-)
      2. nodes are connected from left to right (>>)
      3. nodes are joined from right to left (<<)
  3. The 3rd core component of the Diagram library is the cluster

    Cluster allows you to group or cluster nodes in an independent group. We can use the cluster to create a cluster context and also connect nodes in the cluster to other nodes outside the cluster.

  4. The 4th core component of the Diagram library is the edges

    The Edge object contains three properties: label, color, and style

Note: Getting started drawing is very simple, the basic essentials are to draw with the sample code as a reference. You can check and view the code in this Repo and start your drawing.

Example Show

  • The serverless arch by using Lambda,ApiGateway,DynamoDB,etc

    Serverless

  • The ECS deployment

    ECS deployment

  • The ELKB stack

    ELKB

  • The ML example by using eventbridge,rekogniton,translate,etc.

    ML

Summary

The Python drawing library is more practical, but if you are not familiar with graphviz, there will be some unsightly situations in the layout of the architecture diagram. The purpose of this library is to make drawing architecture images the same as writing code, but from the actual effect, for some simple architecture diagrams, it is more convenient to use, but for some complex architectures, the layout of the images is ugly. Therefore, this library has a long way to go if it wants to make a difference.

Thanks for reading and if you like this repo, please fork and star.

Reference

About

This is a demo project mainly demostrate how to use python to draw the blueprint of the software architecture.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages