Lauri Koskenniemi 1db41615aa First implementation of RecordGraph
Created RecordGraph class for testing record nodes.
2026-01-02 19:33:07 +02:00
2026-01-02 19:33:07 +02:00
2026-01-02 19:33:07 +02:00
2025-12-05 09:24:51 +02:00
2026-01-02 19:33:07 +02:00
2026-01-02 19:33:07 +02:00

Puudot

Development

Start implementing graph.py with Graphviz Python library. First created in new_graph.py, but will replace graph.py.

Graph

Based on current cluster architecture.

RecordGraph

New architecture for creating dot. No clusters; one node (record) contains one row table with each column for a person.

dot.node('<this node id>', fr'{(<node id>) <text>}|...')
dot.edge('<this node id>:<other node id>', '<other node id>')

algorithm:

    for block in blocks
        create node
            if block has link, set link as id
            else create id
            add texts to node
            for text in block save links
    
    create edges from links
Description
No description provided
Readme 1.2 MiB
Languages
Python 93.3%
Shell 4.5%
Dockerfile 2.2%