Skip to main content

DFD — Data Flow Diagrams as Code

CI PyPI version License: GPL v3 Python 3.11+

Describe system architectures as text, get diagrams as SVG, PNG, PDF, and more. Version-controlled, diffable, no GUI needed.

DFD generates Data Flow Diagrams from a simple text-based DSL, rendered via Graphviz. It supports the SA/SD and SA/RT methodologies (Structured Analysis / Structured Design, with real-time extensions) as described by Edward Yourdon.

Complete example

The diagram above is generated from this input:

process   Acquire         Acquire data
process   Compute
control   Control
entity    Device
store     Config          Configuration
channel   API

*         ::>  Control    clock
Control   <::  *          enable
Control   <::  *          disable
Control   ::>? Acquire    sampling

Device    ->>  Acquire    continuous raw data
Acquire   -->  Compute    raw records
Config    <->  Compute    parameters
Compute   -->  API        records

Features

Feature Description
SA/RT support Signals, control processes, and channels for real-time and embedded systems
Context diagrams Generate a top-level SA/SD context diagram (style context)
Frames and grouping Visually group related items
Filters Render focused subsets of a large master diagram (neighborhood, only/without)
Dependency checking Verify that all referenced includes and items are consistent
Includes and reuse Split large diagrams across files, share common item definitions via include
Markdown embedding Embed diagrams directly in Markdown files and generate all images in one pass (--markdown mode)
Layout control Horizontal or vertical orientation, placement constraints between items, relaxed constraints on connections
Styling Background color, graph title suppression, inline Graphviz attributes, reusable attribute aliases
Multiple output formats SVG, PNG, PDF, JPG, EPS, and any other format supported by your Graphviz installation (run dot -Thelp for the full list), plus raw DOT source

Quick start

pip install data-flow-diagram

Create a file hello.dfd:

entity    User
process   App
store     DB

User --> App    request
App  --> DB     query
DB   --> App    result
App  --> User   response

Generate the diagram:

data-flow-diagram hello.dfd -o hello.svg --no-graph-title

You should obtain:

Quick start result

Or pipe directly from stdin:

echo 'entity User
process App
User --> App  request' | data-flow-diagram -o quick.svg --no-graph-title

Stdin pipe result

Installing

For users

Requires Python 3.11+ and Graphviz.

Linux (Debian/Ubuntu):

sudo apt install graphviz
pip install data-flow-diagram

macOS (Homebrew):

brew install graphviz python3
pip install data-flow-diagram

If you get a ModuleNotFoundError: No module named 'reportlab.graphics._renderPM' error at runtime, reinstall reportlab:

pip install --upgrade --force-reinstall reportlab

For developers

Requires GNU Make (pre-installed on most Linux distributions; on macOS, install the Xcode Command Line Tools if not already present: xcode-select --install).

git clone https://github.com/pbauermeister/dfd.git
cd dfd
make all    # creates venv, installs deps, formats, lints, tests, builds docs

make all auto-detects your OS and installs the required system packages (Debian apt or macOS brew). Run make help for all available targets.

Documentation

Full syntax reference, examples, and advanced features:

Usage

data-flow-diagram -h says:

usage: data-flow-diagram [-h] [--output-file OUTPUT_FILE] [--markdown]
                         [--format FORMAT]
                         [--background-color BACKGROUND_COLOR]
                         [--no-graph-title] [--no-check-dependencies]
                         [--debug] [--version]
                         [INPUT_FILE]

Command-line DFD diagram generator. Converts a textual description into a
graphic file.

positional arguments:
  INPUT_FILE            DFD input file; if omitted, stdin is used

options:
  -h, --help            show this help message and exit
  --output-file OUTPUT_FILE, -o OUTPUT_FILE
                        output file name; pass '-' to use stdout; if omitted,
                        use INPUT_FILE base name with '.svg' extension, or
                        stdout
  --markdown, -m        consider snippets between opening marker: ```data-
                        flow-diagram OUTFILE, and closing marker: ``` allowing
                        to generate all diagrams contained in an INPUT_FILE
                        that is a markdown file
  --format FORMAT, -f FORMAT
                        output format: gif, jpg, tiff, bmp, pnm, eps, pdf, svg
                        (any supported by Graphviz), or dot (raw Graphviz DOT
                        text); default is svg
  --background-color BACKGROUND_COLOR, -b BACKGROUND_COLOR
                        background color name (including 'none' for
                        transparent) in web color notation; see
                        https://developer.mozilla.org/en-
                        US/docs/Web/CSS/color_value for a list of valid names;
                        default is white
  --no-graph-title      suppress graph title
  --no-check-dependencies
                        suppress dependencies checking
  --debug               emit debug messages
  --version, -V         print the version and exit

See https://github.com/pbauermeister/dfd for information, syntax and examples.

Links

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

data_flow_diagram-1.16.9.tar.gz (33.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

data_flow_diagram-1.16.9-py3-none-any.whl (32.0 kB view details)

Uploaded Python 3

File details

Details for the file data_flow_diagram-1.16.9.tar.gz.

File metadata

  • Download URL: data_flow_diagram-1.16.9.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for data_flow_diagram-1.16.9.tar.gz
Algorithm Hash digest
SHA256 a8d4213223f55d8ff3b018fc3a41f5105b74a0f7019b943ac380c497848b8dba
MD5 55a358b76466b596ddb53086b1f176d4
BLAKE2b-256 89356bcb78765c999c4e4e109e97c19cf96fb7748932b6a7c37cc38dc77b562b

See more details on using hashes here.

File details

Details for the file data_flow_diagram-1.16.9-py3-none-any.whl.

File metadata

File hashes

Hashes for data_flow_diagram-1.16.9-py3-none-any.whl
Algorithm Hash digest
SHA256 8a26cd38d89034e0045d954b97d6aada33494c3793f639c807ac31d9c96f1ff5
MD5 a34592edf2403a096fbaa8dfd2648be0
BLAKE2b-256 03e267407babefb787ef3656aa338c5a4ce29ecc601eff9b88c7f2425a9bc508

See more details on using hashes here.

Release history Release notifications | RSS feed

1.17.0

2 files

This release

1.16.9 This release

2 files

1.16.8

2 files

1.16.7.post2

2 files

1.16.7.post1

2 files

1.16.7

1 file

1.16.6.post1

1 file

1.16.6

1 file

1.16.5

1 file

1.16.4

1 file

1.16.2.post2

1 file

1.16.2.post1

1 file

1.16.2

1 file

1.16.1.post1

1 file

1.16.1

1 file

1.16.0.post1

1 file

1.16.0

1 file

1.15.3

1 file

1.15.2

1 file

1.14.6.post2

1 file

1.14.6.post1

1 file

1.14.6

1 file

1.14.5

1 file

1.14.4

1 file

1.14.2

1 file

1.14.1

1 file

1.13.1

1 file

1.12.1.post3

1 file

1.12.1.post2

1 file

1.12.1.post1

1 file

1.12.1

1 file

1.12.0

1 file

1.11.1.post2

1 file

1.11.1.post1

1 file

1.11.1

1 file

1.11.0

1 file

1.10.1

1 file

1.10.0

1 file

1.9.1

1 file

1.9.0

1 file

1.8.0

1 file

1.7.1

1 file

1.7.0.post2

1 file

1.7.0.post1

1 file

1.7.0

1 file

1.6.0

1 file

1.5.0

1 file

1.4.1

1 file

1.4.0

1 file

1.3.0

1 file

1.2.2.post1

1 file

1.2.2

1 file

1.2.1

1 file

1.1.1

1 file

1.1.0

1 file

1.0.0

1 file

0.0.4

1 file

0.0.3.post1

1 file

0.0.3

1 file

0.0.2

1 file

0.0.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page