A Python DSL inspired by Structurizr, intended for generating C4 diagrams
Project description
PyStructurizr
PyStructurizr provides a Python DSL inspired by Structurizr, and is intended for generating C4 diagrams.
Overview
Structurizr builds upon "diagrams as code", allowing you to create multiple software architecture diagrams from a single model. A popular way of creating Structurizr workspaces is the Structurizr DSL.
However, Structurizr DSL has some downsides:
- It's a custom language, with its own syntax rules and limitations
- It has rather primitive support for splitting your diagram code over multiple files, with only
#include
-like support rather than proper imports. That makes it really hard to maintain C4 models with a team.
PyStructurizr solves that. It implements the same concepts as Structurizr DSL, but now in plain Python. That means you can use the full power and flexibility of Python to define your diagrams!
Example
Consider the following example (as shown on Structurizr's homepage), in Structurizr DSL:
workspace {
model {
user = person "User"
softwareSystem = softwareSystem "Software System" {
webapp = container "Web Application" {
user -> this "Uses"
}
container "Database" {
webapp -> this "Reads from and writes to"
}
}
}
views {
container softwareSystem {
include *
autolayout lr
}
}
}
In PyStructurizr, this becomes:
from pystructurizr.dsl import Workspace
# Create the model(s)
with Workspace() as workspace:
with workspace.Model(name="model") as model:
user = model.Person("User")
with model.SoftwareSystem("Software System") as software_system:
webapp = software_system.Container("Web Application")
db = software_system.Container("Database")
# Define the relationships
user.uses(webapp, "Uses")
webapp.uses(db, "Reads from and writes to")
# Create a view onto the model
workspace.ContainerView(
software_system,
"My Container View",
"The container view of our simply software system."
)
For such a simple example, the benefits are not super obvious, but look at the example in this repo for something more realistic.
CLI
PyStructurizr comes with a DSL that allows to convert your Python code to Structurizr DSL, or to immediately generate SVG versions of the diagrams. You can even upload directly to your favorite cloud storage provider: this is ideal if you want to include diagrams on blogs, wiki's, etc.
Finally, there's a development mode so you can get live preview of the diagram you're working on in your webbrowser.
Installation
pip install pystructurizr
Usage
Convert to Structurizr DSL
pystructurizr dump --view <path_to_view_file>
Live preview
pystructurizr dev --view <path_to_view_file>
Convert to SVG and upload to cloud storage
pystructurizr build --view <path_to_view_file> --gcs-credentials <path_to_credentials_json_file> --bucket-name <string> --object-name <string>
Note that this command uses kroki.io under the hood to generate your SVG file. The benefit is that you don't need to install any tools that understand Structurizr DSL on your machine. The downside is that your diagram code is sent to an online service.
License
MIT License
Acknowledgements
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pystructurizr-0.1.3.tar.gz
.
File metadata
- Download URL: pystructurizr-0.1.3.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5b06c24e17c3a52a9e1092e9e2e152ac6c59d3aec1231a569789b0cb86e444a |
|
MD5 | a6ba1aaad5ff860d27e658f964c05279 |
|
BLAKE2b-256 | eb5db7ff080ba851a53e0a9e6a3c03768e9189a5f441b62e8ecdd790dff516f8 |
File details
Details for the file pystructurizr-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: pystructurizr-0.1.3-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1eb771ce5851e1c86fc2fdd2f189cb8a1dc96e6aa6b374f3dcad0bdf04291536 |
|
MD5 | cc16710342d7f5dcd7e4a487457620c1 |
|
BLAKE2b-256 | 7e7d9dee36213a509402a7f135acc6d76a378a9c0b4bf3eb7a670661e76297e4 |