Python - Generate flows using pydot
Pydot is a diagram as code generator i.e. you write lines of code and thanks to a magic process, you can render the code as an image.
For guys just like me who are terrible at visuals, this is gold.
Let's say you have to describe an IT process such as ETL (data is loaded, one or other transformation rule is applied and the result is loaded into a database, for example), you can easily imagine to draw some rectangles using a tool like https://app.diagrams.net/ (formerly known as draw.io) or use a smarter way to do it.
Let's see how in this article.