Skip to main content

Graph Modeling Language (GML) standalone parser for Python 3.

Project description

Build Status PyPI version

PyGMLParser is a Graph Modeling Language (GML) standalone parser for Python 3.

It is a fork of: icasdri/gml.py


Get it from PyPi by doing:

pip3 install PyGMLParser

Uses Travis CI for continuous integration.

The class documentation is here


The specific updates are:

  • Updated to Python 3
  • Use f-strings
  • Separate files for each class
  • Use packages instead of single file
  • Updated GML format from Tulip .gml files to include the following keywords keyword used by the Python Tulip gml exporter ('GML Export')
    • graphics
    • Line
    • point
  • Use dataclasses for graphics and points
  • Use type hinting and custom typing for readability and maintainability
  • Use Python logging for debugging
  • Introduced a set of small unit tests

The fast and the dirty

from org.hasii.pygmlparser.Parser import Parser
from org.hasii.pygmlparser.Graph import Graph
from org.hasii.pygmlparser.Edge import Edge
from org.hasii.pygmlparser.Node import Node
from org.hasii.pygmlparser.graphics.NodeGraphics import NodeGraphics
from org.hasii.pygmlparser.graphics.EdgeGraphics import EdgeGraphics
from org.hasii.pygmlparser.graphics.Point import Point




# Instantiate a parser, load a file, and parse it!
parser: Parser = Parser()
parser.load_gml('/path/to/aGraph.gml')
parser.parse()

# Retrieve the graph nodes 
nodes: Graph.Nodes = graph.graphNodes  # a map of id -> Node objects

# Retrieve the graph edges
edges: Graph.Edges = graph.graphEdges  # list of Edge objects

# Directly access the node or edge attributes
node: Node = graph.graphNodes[0]
edge: Edge = graph.graphEdges[0]

node.id      # the id of this node
edge.source  # the source id of this edge

node.is_anon  # whether or not this node actually appeared as a node block
              # in the input GML (or if it was inferred, via edge source/targets)
              # _True_ if inferred, False if actually appeared

node.forward_edges   # List of Edge instances whose source is this node
node.backward_edges  # List of Edge instances whose target is this node

# Special attributes on Edges
edge.source_node  # Node object corresponding to edge.source (which is an id)
edge.target_node  # Node object corresponding to edge.target (which is an id)

# Get the Tulip extensions
edgeGraphics: EdgeGraphics = edge.graphics
nodeGraphics: NodeGraphics = node.graphics

# Get the edge line drawing description
line:  Tuple[Point] = edgeGraphics.line

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

pygmlparser-1.0.1.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

pygmlparser-1.0.1-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file pygmlparser-1.0.1.tar.gz.

File metadata

  • Download URL: pygmlparser-1.0.1.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.9

File hashes

Hashes for pygmlparser-1.0.1.tar.gz
Algorithm Hash digest
SHA256 853ee8a2eba007182522a124bec04f62250c58f84440d3439b27ed544cfe587e
MD5 26a70d53f67fd36b3f342bb8416c170c
BLAKE2b-256 d56f031d17fde572c9bfed474da134dedde9cf9a49e5b9f069dd615a5f5b53c1

See more details on using hashes here.

File details

Details for the file pygmlparser-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: pygmlparser-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.9

File hashes

Hashes for pygmlparser-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 16eb104bb26bda771b554456c657d87bb00bee72868b2a7558aaf78d7cdcf38b
MD5 a40de0e970626c26f7378ad737a625c6
BLAKE2b-256 a556d643715723729de34ff72633ca9b5745dc8372e6fffea09f70394dcab5ee

See more details on using hashes here.

Supported by

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