Home Blog Projects Papers Vibe About Other blogs CV
1 min read Pymetrix series docs

Flow classes in Pymetrix

A look at the Flow Class objects - FlowNode, FlowLayer, and FlowGraph - that form the building blocks of Pymetrix.

The Flow Class objects make the building blocks of Pymetrix (previously Analyx). All Pymetrix functionality is constructed using these Flow Objects.

How do they work?

Flow objects exist in three types:

  1. Flow Node
  2. Flow Layer
  3. Flow Graph

The structure follows a hierarchical pattern where each successive element is a collection of the previous one.

Anatomy

FlowNode()

FlowNode is the basic building block of the entire protocol. It has 10+ methods, and more than 5 attributes.

Attributes:

  • parents

Related posts