Skip to main content

SysML v2.0 Parser

Project description

sysmlpy

PyPI versionPyPI statusMIT license

Description

sysmlpy is an open source pure Python library for constructing python-based classes consistent with the SysML v2.0 standard.

This project began as a fork of the sysml2py project by Christopher Cox. Since April 2026 Jon Fox decided to complete coverage of all SysMLv2 features over two months of weekends, and dropped the textX parser in favor of an ANTLR4 parser grammar and changed our unit library to pint. The project had diverged so much from sysml2py that a new name, sysmlpy, was selected.

Lines of Code Over Time

v0.27.0: General View (GV), Package View, and three GridView specializations (Tabular View, Data Value Tabular View, Relationship Matrix View) with PlantUML, Markdown, and HTML output. 108 PlantUML tests. All 68+ NotImplementedError stubs in grammar/classes.py replaced with graceful handling.

v0.26.0: Action Flow View, Interconnection View, and State Transition View with auto-include of connected elements. Grammar-level flow scanning. 101 PlantUML tests.

v0.19.0: Semantic analysis engine with undefined symbol detection. Import resolution (namespace ::*, membership, recursive ::*::**). Symbol table with hierarchical scope resolution and qualified name lookup.

v0.17.0: 100% test suite pass rate (487/487). Cayley graph database storage backend via HTTP API. Full grammar round-trip coverage (56/56 tests). Programmatic API consistency fixes. NetworkXStore bug fix.

v0.16.0: 100% grammar round-trip test coverage (56/56). Analysis case usage, trade study, calculation redefinition, and case body member support. Import visibility defaults to private per SysML v2 spec.

v0.15.0: ISQ unit validation (300+ type-to-dimension mappings), US Customary unit support (21 custom definitions), PlantUML diagram generation with stereotype-based styling, and comprehensive API documentation.

Requirements

sysmlpy requires the following Python packages:

Optional Dependencies

  • networkx — graph analysis backend (install with pip install sysmlpy[graph])
  • kuzu — embedded graph database with disk persistence and Cypher queries (install with pip install sysmlpy[kuzu])
  • cayley — graph database via HTTP API, supports BoltDB/LevelDB backends (install with pip install sysmlpy[cayley])
  • PlantUML v1.2020.0+ — diagram rendering (requires Java + PlantUML JAR or PlantUML server). The generator uses <style> blocks and skinparam stereotype selectors introduced in v1.2020.

Installation

Multiple installation methods are supported by sysmlpy, including:

Logo Platform Command
PyPI logo PyPI python -m pip install sysmlpy
PyPI logo PyPI python -m pip install sysmlpy[graph] (with graph analysis)
PyPI logo PyPI python -m pip install sysmlpy[cayley] (with Cayley graph DB)
GitHub logo GitHub python -m pip install https://github.com/mycr0ft/sysmlpy/archive/refs/heads/main.zip

Documentation

Documentation can be found here.

Basic Usage

The code below will create a part called Stage 1, with a shortname of <'3.1'> referencing a specific requirement or document. It has a mass attribute of 100 kg. It has a thrust attribute of 1000 N. These attributes are created and placed as a child of the part. Next, we recall the part value for thrust and add 199 N. Finally, we can dump the output from this class.

  from sysmlpy import Attribute, Part, ureg

  a = Attribute(name='mass')
  a.set_value(100 * ureg.kilogram)
  b = Attribute(name='thrust')
  b.set_value(1000 * ureg.newton)
  c = Part(name="Stage_1", shortname="'3.1'")
  c._set_child(a)
  c._set_child(b)
  v = "Stage_1.thrust"
  c._get_child(v).set_value(c._get_child(v).get_value() + 199 * ureg.newton)
  print(c.dump())

It will output the following:

  part <'3.1'> Stage_1 {
    attribute mass= 100 [kilogram];
    attribute thrust= 1199.0 [newton];
  }

The package is able to handle Items, Parts, and Attributes.

a = Part(name='camera')
b = Item(name='lens')
d = Attribute(name='mass')
c = Part(name='sensor')
c._set_child(a)
c._set_child(b)
a._set_child(d)
print(c.dump())

will return:

part sensor {
   part camera {
      attribute mass;
   }
   item lens;
}

Actions

Actions (activities) can be defined with input and output parameters::

from sysmlpy import Action

# Action definition with typed inputs/outputs
a = Action(definition=True, name='Focus')
a.add_input('scene', 'Scene')
a.add_output('image', 'Image')
print(a.dump())
# → action def Focus { in scene : Scene; out image : Image; }

# Action usage with references
b = Action(name='TakePicture')
b.add_input('scene')
b.add_output('picture')
print(b.dump())
# → action TakePicture { in scene; out picture; }

References

References can reference other elements::

from sysmlpy import Reference, Item

# Simple reference
r = Reference(name='driver')
print(r.dump())
# → ref driver;

# Reference with type
person = Item(name='Person')
r2 = Reference(name='driver')
r2.set_type(person)
print(r2.dump())
# → ref driver : Person;

# Reference redefinition
r3 = Reference(name='payload', redefines=True)
r3.set_type(person)
print(r3.dump())
# → ref :>> payload : Person;

Grammar Round-Trip

loads() parses SysML v2 text and classtree() converts the result back to text. This round-trip is the basis for the grammar test suite.

from sysmlpy import loads
from sysmlpy.formatting import classtree

text = """package 'Action Example' {
    action def Focus { in scene : Scene; out image : Image; }
    action def Shoot { in image: Image; out picture : Picture; }

    action def TakePicture {
        in item scene : Scene;
        out item picture : Picture;

        bind focus.scene = scene;

        action focus : Focus { in scene; out image; }

        flow focus.image to shoot.image;

        first focus then shoot;

        action shoot : Shoot { in image; out picture; }

        bind shoot.picture = picture;
    }
}"""

model = loads(text)
tree = classtree(model)
print(tree.dump())

61 of 77 grammar round-trip tests pass (61/77). All 61 non-control-flow tests pass (100%). The 16 deferred tests require action control-flow node classes (IfNode, WhileLoopNode, ControlNode, SendNode, AcceptNode, TerminateNode) not yet ported to grammar/classes.py. Covered categories: packages, parts, items, ports, interfaces, binding connectors, flow connections, all action forms (definition, shorthand, succession, decomposition), expressions, calculations, constraints, state definitions, requirements, analysis cases, and trade studies.

Semantic Analysis

sysmlpy includes a comprehensive semantic analysis engine that validates parsed models against SysML v2 well-formedness rules. Run analyze(model) to detect issues across six categories:

from sysmlpy import loads, analyze

model = loads("""
    package Types {
        part def Engine;
    }
    package Vehicle {
        import Types::*;
        part myCar : Engine;    # resolved via import
        part myWheel : Wheel;   # undefined!
    }
""")

issues = analyze(model)
for issue in issues:
    print(f"[{issue.severity}] {issue.code}: {issue.message}")
# → [error] UNDEFINED_SYMBOL: Undefined symbol 'Wheel' referenced in Part 'myWheel'

Symbol Resolution

  • Undefined symbol detection — catches references to non-existent types, features, and packages
  • Qualified name resolutionP::A and Outer::Inner::DeepPart resolve through scope chains
  • Inheritance resolution — subsetting/redefinition references resolve through supertype chains
  • Library symbol index — scans 88 .kerml/.sysml files (~1,417 symbols) from the bundled standard library

Import Resolution

The analyzer resolves three import patterns with visibility enforcement:

Pattern Example Visibility Effect
Namespace import import Types::* private (default) Makes all symbols from Types visible in current scope only
Membership import import Types::Engine private Makes only Engine visible in current scope
Recursive import import Types::*::** private Imports from Types and all nested packages
Public import public import Types::* public Re-exports symbols to sibling and child scopes
Protected import protected import Types::* protected Visible to child scopes only, not re-exported

OCL Well-Formedness Checks

Code Rule Description
DUPLICATE_NAME Namespace.duplicate_names No two members may share the same name in a scope
CYCLIC_SPECIALIZATION Type.no_cyclic_specialization A type cannot directly or indirectly specialize itself
INCOMPATIBLE_SUBSETTING Feature.subsetting_compatible A subsetting feature must reference a defined feature in the inheritance chain
INCOMPATIBLE_REDEFINITION Feature.redefinition_compatible A redefining feature must reference a defined feature in the inheritance chain
INCOMPATIBLE_PART_DEFINITION Part.definition_compatible A part usage must be typed by a PartDefinition
INCOMPATIBLE_PORT_DEFINITION Port.definition_compatible A port usage must be typed by a PortDefinition
INCOMPATIBLE_FEATURE_CHAIN Feature.chaining_compatible Chained features (a.b.c) must have compatible types at each step
INVALID_MULTIPLICITY_BOUNDS Multiplicity.bounds_valid Lower bound must be ≤ upper bound ([5..2] is invalid)
UNRESOLVED_IMPORT Import target does not exist in the model

Multi-File Projects

sysmlpy supports loading multiple SysML files into a shared model with automatic cross-file import resolution:

from sysmlpy import load_files, load_project, load_with_dependencies, analyze

# Option 1: Load specific files (packages with same name are merged)
model = load_files([
    'models/Shared/Types.sysml',
    'models/SystemGateway/SystemGatewayMain.sysml',
])

# Option 2: Load entire project directory
model = load_project('models/')

# Option 3: Load with automatic dependency resolution
model = load_with_dependencies(
    'models/SystemGateway/SystemGatewayMain.sysml',
    search_paths=['models/SystemGateway', 'models/Shared'],
)

# Validate — cross-file references resolve correctly
issues = analyze(model)

Standard library imports (ScalarValues, ISQ, etc.) are validated when a library path is provided:

import sysmlpy
model = load_files(['main.sysml'], library=sysmlpy.__path__[0] + '/library')

Storage Backends

sysmlpy provides a unified Store protocol with multiple backend implementations. All backends support the same API: put, get, delete, children, parents, relationships, query, has, ids, clear, plus graph traversal methods (descendants, ancestors, path).

from sysmlpy.store import create_store

# In-memory (default, zero dependencies)
store = create_store("memory")

# NetworkX graph (analysis, shortest paths, centrality)
store = create_store("networkx")

# Kuzu embedded graph DB (disk persistence, Cypher queries)
store = create_store("kuzu", database="/tmp/model.db")

# Cayley remote graph DB (HTTP API, BoltDB/LevelDB backends)
store = create_store("cayley", host="localhost", port=64210)

InMemoryStore

Dict-based backend with O(1) lookups. Zero external dependencies. Ideal for testing and small models.

NetworkXStore

Graph backend using NetworkX MultiDiGraph. Enables graph analysis algorithms:

from sysmlpy.store import NetworkXStore

store = NetworkXStore()
store.put(eid, {"name": "Engine", "sysml_type": "part"})

# Graph analysis
components = store.connected_components()
centrality = store.centrality()
cycles = store.cycles()
stats = store.stats()  # nodes, edges, density, avg_degree
subgraph = store.subgraph([eid1, eid2])
store.export_graphml("model.graphml")

KuzuStore

Embedded graph database with disk persistence. Uses Cypher for queries. Data survives across process restarts.

from sysmlpy.store import KuzuStore

# Persistent database
store = KuzuStore(database="/path/to/model.db")

# In-memory mode
store = KuzuStore()

CayleyStore

Remote graph database backend communicating with a Cayley server over HTTP. Supports any Cayley backend (BoltDB, LevelDB, in-memory). Uses the quad model (subject, predicate, object, label) for flexible data representation.

from sysmlpy.store import CayleyStore

# Connect to local Cayley server
store = CayleyStore()

# Custom host/port with namespace isolation
store = CayleyStore(host="cayley.example.com", port=64210, label="my_project")

# Graph analysis
store.put(eid, {"name": "Wheel", "sysml_type": "part"})
descendants = store.descendants(root_id)
ancestors = store.ancestors(leaf_id)
path = store.path(source_id, target_id)
components = store.connected_components()
cycles = store.cycles()
centrality = store.centrality()
store.export_graphml("model.graphml")

Running Cayley with Docker:

# In-memory backend
docker run -p 64210:64210 --rm cayley/cayley

# Persistent BoltDB backend
docker run -p 64210:64210 -v /data:/data --rm cayley/cayley -db boltdb -dbpath /data/cayley.db

Quad Model: Elements are stored as quads where the subject is the element UUID, predicates are property names (e.g., name, sysml_type), and objects are property values. Relationships are stored as quads where the predicate is the relationship type (e.g., parent_child, typed_by). Labels provide namespace isolation for multi-tenant scenarios.

PlantUML Visualizations

sysmlpy provides 17 view rendering functions for generating diagrams from parsed SysML v2 models. Definitions render with sharp corners and usage elements with rounded corners. Relationships are differentiated by arrow style, thickness, and color — following the official SysML v2 Pilot Implementation approach.

All functions support:

  • style="bw" (default, journal-ready monochrome) or style="color"
  • focus= to render only a specific element's subtree
  • custom_style= for user-defined PlantUML style overrides

Base Generator

from sysmlpy import loads
from sysmlpy.plantuml import PlantUMLGenerator

model = loads("""
package Vehicle {
    part def Wheel { attribute radius; attribute pressure; }
    part def BrakeSystem { attribute padThickness; }
    part def VehicleAssembly {
        part frontLeft : Wheel;
        part frontRight : Wheel;
        part brakes : BrakeSystem;
    }
    part myVehicle : VehicleAssembly;
}
""")

gen = PlantUMLGenerator(model)
print(gen.generate())

With filtering:

# Focus on a subtree, limit depth, or pick specific elements
gen = PlantUMLGenerator(model, focus=myVehicle, max_depth=3)
gen = PlantUMLGenerator(model, elements=[Wheel, BrakeSystem])

Standard View Rendering Functions

Graphical Rendering — as_graphical_rendering()

Elements as shapes with full relationship arrows. The standard Structure/BDD view.

Vehicle Structure (BW)

from sysmlpy.plantuml import as_graphical_rendering
print(as_graphical_rendering(model, style="bw"))

General View (GV) — as_general_view()

Corresponds to SysML v2 GeneralView (short name gv). The most general view — presents all model elements as a graph of nodes and edges. Renders parts, items, actions, states, ports, interfaces, requirements, constraints, flows, and relationships.

General View

from sysmlpy.plantuml import as_general_view
print(as_general_view(model, style="bw"))

Package View — as_package_view()

A GeneralView specialization that filters on Package containment. Renders the package hierarchy with nested rectangles and contained elements.

Package View

from sysmlpy.plantuml import as_package_view
print(as_package_view(model, style="bw"))

Action Flow View (AFV) — as_action_flow_view()

Corresponds to SysML v2 ActionFlowView (short name afv). Shows actions with their control and object flows. Auto-includes connected flow elements.

Action Flow View

from sysmlpy.plantuml import as_action_flow_view
print(as_action_flow_view(model, style="bw"))

Interconnection View (IV) — as_interconnection_view() / as_interconnection_diagram()

Corresponds to SysML v2 InterconnectionView (short name iv). Focuses on connectors, bindings, and flow paths between ports and parts.

Interconnection Diagram

from sysmlpy.plantuml import as_interconnection_view
print(as_interconnection_view(model, style="bw"))

State Transition View (STV) — as_state_transition_view()

Corresponds to SysML v2 StateTransitionView (short name stv). State machine diagram with hierarchical states and transitions. Auto-includes connected transition elements.

State Transition View

from sysmlpy.plantuml import as_state_transition_view
print(as_state_transition_view(model, style="bw"))

Tree Diagram — as_tree_diagram()

Hierarchical containment tree using nested PlantUML containers. Shows ownership hierarchy with sharp corners for definitions and rounded corners for usages.

Tree Diagram

from sysmlpy.plantuml import as_tree_diagram
print(as_tree_diagram(model, style="bw"))

Tabular View Rendering Functions

Element Table — as_element_table()

A simple tabular listing with columns Name, Type, Kind, and Parent.

Element Table

from sysmlpy.plantuml import as_element_table
print(as_element_table(model, style="bw"))

Textual Notation — as_textual_notation()

Indented text representation inside a PlantUML note, similar to the SysML v2 textual concrete syntax.

Textual Notation

from sysmlpy.plantuml import as_textual_notation
print(as_textual_notation(model, style="bw"))

GridView Specializations (Tabular, Data Value, Relationship Matrix)

Per the SysML v2 standard, GridView (short name grv) presents exposed model elements and their relationships in a rectangular grid. It has three specializations, all supporting three output formats:

Format Use case
"plantuml" (default) PlantUML table / salt matrix — embed in diagrams
"markdown" Standard pipe table — for GitHub, MkDocs, or Jupyter
"html" Rich <table> with CSS classes — for web dashboards

Tabular View — as_tabular_view()

Extensible table with configurable columns. Default columns: Name, Type, Kind, Parent, Typed By, Specializes.

Tabular View (BW)

from sysmlpy.plantuml import as_tabular_view
print(as_tabular_view(model, output_format="markdown"))

Custom columns and other output formats:

# HTML with specific columns
print(as_tabular_view(model,
    columns=["Name", "Type", "Parent", "Typed By"],
    output_format="html"))

# Markdown for documentation
print(as_tabular_view(model, output_format="markdown"))

Data Value Tabular View — as_data_value_tabular_view()

Attribute-specific version showing Element, Attribute, Value, Unit, and Type columns. Uses Attribute.get_value() for pint.Quantity extraction.

Data Value View

from sysmlpy.plantuml import as_data_value_tabular_view
print(as_data_value_tabular_view(model, output_format="html"))

Relationship Matrix View — as_relationship_matrix_view()

Pairwise element×element matrix showing relationship types:

  • C = Composite containment (parent → child)
  • S = Shared (siblings)
  • T = Typing
  • G = Specialization (generalization)
  • B = Binding, F = Flow, R = Redefinition, etc.

Relationship Matrix

from sysmlpy.plantuml import as_relationship_matrix_view
print(as_relationship_matrix_view(model, output_format="markdown"))

Type filtering and HTML output:

# Only show part elements on rows
print(as_relationship_matrix_view(model,
    row_type="part", output_format="html"))

Color Style

All rendering functions accept style="color" for colored output with CSS-style backgrounds:

from sysmlpy.plantuml import as_tabular_view
print(as_tabular_view(model, style="color"))

Tabular View (Color)

Complete Example Gallery

See docs/plantuml-examples/ for all 16 rendered example images, covering every view function.

# Example View Type
1 Usage vs Definition Graphical
2 Relationship Arrows Graphical
3 Vehicle Structure Graphical (BW)
4 Black-and-White Style Graphical (BW)
5 Requirements Graphical
6 Interconnection Interconnection View
7 General View (GV) General View
8 Package View Package View
9 Action Flow View (AFV) Action Flow View
10 State Transition View (STV) State Transition View
11 Tree Diagram Tree Diagram
12 Element Table Element Table
13 Textual Notation Textual Notation
14 Tabular View (GridView) Tabular View
15 Data Value Tabular View (GridView) Data Value View
16 Relationship Matrix (GridView) Relationship Matrix
17 Tabular View — Color Tabular View (color)

Conformance

100% of 123 OMG XPect conformance tests pass (123/123).

License

sysmlpy is released under the MIT license, hence allowing commercial use of the library.

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

sysmlpy-0.27.4.tar.gz (911.6 kB view details)

Uploaded Source

Built Distribution

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

sysmlpy-0.27.4-py3-none-any.whl (974.9 kB view details)

Uploaded Python 3

File details

Details for the file sysmlpy-0.27.4.tar.gz.

File metadata

  • Download URL: sysmlpy-0.27.4.tar.gz
  • Upload date:
  • Size: 911.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sysmlpy-0.27.4.tar.gz
Algorithm Hash digest
SHA256 a2209ac361b19e01a65d7e2c3d0f814cb1c50091d9cb8c5764b3dfcc06e567df
MD5 ed967203eddd6d3dcaaa5c57d68921c5
BLAKE2b-256 1d1fd064ece25dcc04cfa3831d0b75b0bf9b9036059fb03d86c2b5b7e183bc30

See more details on using hashes here.

Provenance

The following attestation bundles were made for sysmlpy-0.27.4.tar.gz:

Publisher: release.yml on mycr0ft/sysmlpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sysmlpy-0.27.4-py3-none-any.whl.

File metadata

  • Download URL: sysmlpy-0.27.4-py3-none-any.whl
  • Upload date:
  • Size: 974.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sysmlpy-0.27.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ea27b0e875169462b88deb5d414c85af1f02eb1d0c72edac2dcfd1ad152c4ce0
MD5 25b5461c84b647183716495c5502c3d9
BLAKE2b-256 a52e50dc27e9dc644b37ba38697128cc73623cdf5d9e2ba7ea4101d625f1852d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sysmlpy-0.27.4-py3-none-any.whl:

Publisher: release.yml on mycr0ft/sysmlpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page