Heterograph
heterograph is a Python library for building, querying, and visualizing heterogeneous directed graphs ("heterographs"). It provides a convenient, Pythonic API for managing vertices, edges, and their properties, supports common graph traversals, and includes rich visualization tools for notebooks and the web.
The project is designed for exploratory graph modeling and analysis, especially when you need structured metadata on vertices and edges and interactive inspection of graph topology.
Key Features
-
Heterogeneous directed graphs
- Vertices and edges with arbitrary, typed properties
- Explicit in-/out-neighbour management
-
Graph algorithms
- Depth-first search (DFS) traversal utilities
- Topology and neighbourhood queries
-
Visualization
- Interactive web-based viewer (Flask + D3)
- Notebook-friendly display helpers
- Optional Graphviz export for static diagrams
-
Extensible design
- Custom initialization hooks for graphs, vertices, and edges
- Property system (
HGraphProps) for clean metadata handling
Project Structure
heterograph/
├── heterograph/
│ ├── hgraph.py # Core HGraph implementation
│ ├── hgraph_props.py # Property handling for graphs, vertices, edges
│ ├── webview.py # Flask-based interactive web viewer
│ ├── utils/ # Notebook & display helpers
│ └── assets/ # Static JS/CSS assets for visualization
├── tests/ # Pytest test suite
├── environment.yml # Conda environment definition
├── pyproject.toml # Build & packaging configuration
├── LICENSE
└── README.md
Installation
Create the Conda environment (recommended)
conda env create -f environment.yml
conda activate heterograph
Quick Start
Creating a graph
from heterograph import *
# Create an empty heterograph
g = HGraph()
# Add vertices
v1 = g.add_vx()
v2 = g.add_vx()
# Add an edge
e = g.add_edge(v1, v2)
Working with properties
# Set vertex properties
g.pmap[v1]["label"] = "Source"
g.pmap[v2]["label"] = "Target"
# Set edge properties
g.pmap[e]["weight"] = 1.0
# set graph properties
g['name'] = 'my graph'
Visualization
Web-based viewer
from heterograph import *
g = HGraph()
# Add vertices
v1 = g.add_vx()
v2 = g.add_vx()
g.add_edge(v1, v2)
g.view()
This launches a local Flask server with an interactive graph UI (pan, zoom, inspect vertices/edges).
Testing
Run the full test suite with:
pytest
Tests cover:
- Vertex and edge creation
- Neighbour queries
- DFS traversal
- Graph initialization and topology
See environment.yml for the full dependency list.
License
This project is licensed under the terms of the Apache License 2.0. See LICENSE for details.
Acknowledgements
- Built on top of the excellent
graph-toollibrary - Visualization powered by Flask and D3.js
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file heterograph-0.2.5.tar.gz.
File metadata
- Download URL: heterograph-0.2.5.tar.gz
- Upload date:
- Size: 59.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
018d94e18198893a6240cbb4195b040752ae51393a234d96180888a7bd986b1e
|
|
| MD5 |
a22b88e6da2fc9bc30b23f3f03872de4
|
|
| BLAKE2b-256 |
c30a0dc2875cfff496561e4812dad43989c7bc263d93ebbde29fd9d0d85d987c
|
File details
Details for the file heterograph-0.2.5-py3-none-any.whl.
File metadata
- Download URL: heterograph-0.2.5-py3-none-any.whl
- Upload date:
- Size: 63.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d67ec06716bc4bb961210a65fbedf6803ee83e83934a63dd8e7fa6ad54043fb1
|
|
| MD5 |
27b0ada213a41ead684e98c2498099a8
|
|
| BLAKE2b-256 |
5a8089fc6001a51620099dc56afded54b55222022b6fd64e0cc563b7e9074996
|