Property Graph Exchange Format (PG) parser and serializer
Project description
pgformat
Property Graph Exchange Format (PG) parser and serializer
This package implements parsers and serializers to for labeled property graphs in Property Graph Exchange Format.
Table of Contents
Install
Requires Python 3.8 or above.
pip install pgformat
Usage
The package comes with a simple command line client to convert between serialization forms of Property Graph Exchange format and an API to be used in python code. The command line client by default reads PG Format and emits PG JSONL.
usage: pgformat [-h] [-t {ndjson,json,pg}] [source]
Parse and transform property graphs in PG Format.
positional arguments:
source input file (default: - for standard input)
options:
-h, --help show this help message and exit
-t {ndjson,json,pg}, --to {ndjson,json,pg}
target format
The functionality is a subset of the pgraph command line tool written in NodeJS.
The command line client can also be called via python -m pgformat
.
API
The package exports the functions parseGraph
, parseStatements
, and serializeGraph
:
from pgformat import parseGraph, parseStatements, serializeGraph
statements = parseStatements("x\na -> b") # list of statements
graph = parseGraph("a -> b") # full graph
pg = serializeGraph(graph) # back to PG Format
The internal format of graphs and their statements is a data structure of plain lists and arrays for direct conversion to JSON. This may be changed in a future version.
parseGraph
parseGraph(str: str, sort=True, implicitNodes=True) -> dict
Parse a property graph given as string in PG Format. Returns a dict with keys nodes
and edges
(PG JSON format).
Optional parameter sort
sorts nodes and edges by their identifier, and labels by their value. Optional parameter implicitNodes
adds nodes for node identifiers referenced in edges only.
parseStatements
parseStatements(str: str, implicitNodes=True, mergeNodes=True, duplicatedEdges=False) -> list
Parse a list of statements given as string in PG Format. Returns a list of node and edge statements in order of appearance (PG JSON format).
Optional parameter mergeNodes
applies merging of nodes with same identifiers. Optional parameter duplicatedEdges
throws an exception if set to False
.
serializeGraph
serializeGraph(graph: dict) -> str
Convert a property graph to PG Format.
License
Licensed under the MIT License.
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
Built Distribution
File details
Details for the file pgformat-0.2.1.tar.gz
.
File metadata
- Download URL: pgformat-0.2.1.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a4bc101a18dcff64d79c65b6c377557098b802ad2442cc25bc5cd55351c809e |
|
MD5 | 91cee33648c875d6511139ee260a1505 |
|
BLAKE2b-256 | 1163b16dc2d4adbbf523e0ba78a0957a8de862f19a98580e06641be5debd57a8 |
File details
Details for the file pgformat-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pgformat-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc485b5a8920d446f7525163218250d89def50eb309c2b901e524fb40811b4bd |
|
MD5 | 734da0cb5343d7e2731a300fde548daf |
|
BLAKE2b-256 | 49157b6a68f00499dcf36e802e471b802241f703f7ceb9e6bc7eb74b2ca834b1 |