Skip to main content

Graphinate. Data to Graphs.

Graphinate. Data to Graphs.
Package PyPI - version PyPI - Status PyPI - Python Version PyPI - Downloads PyPI - Dependents Libraries.io SourceRank
Code GitHub GitHub repo size GitHub last commit (by committer) Contributors
Tools PyCharm uv ruff mkdocs-material mdformat Hatch project commitizen agentskills
CI/CD Test Test (Beta) CodSpeed Publish Publish Docs
Scans Coverage Quality Gate Status Security Rating Maintainability Rating Reliability Rating Lines of Code Vulnerabilities Bugs Codacy Badge Codacy Coverage CodeFactor DeepSource DeepSource Snyk CodSpeed
Mentions PythonBytes Podcast Python Hub
Badge Graphinate

Table of Contents

Introduction

Meet Graphinate

Graphinate turns your data into Graphs. Effortlessly.

It is a Python library designed to streamline the pipeline from raw data to structured Graph representations. With Graphinate, you can easily map complex data hierarchies and payloads directly to nodes and edges, creating an efficient retrieval system.

Whether you need to visualize relationships, analyze structure, or serve data via an API, Graphinate provides the tools to bring your graph to life.

Graphinate uses and builds upon the excellent NetworkX.

Library at a Glance

📐 The Architect (graphinate.modeling)

Define the blueprint of your graph by decorating simple functions that yield your data as nodes and edges.

🏗️ The Construction Crew (graphinate.builders)

Takes your graph blueprint and constructs various outputs, whether it's a queryable NetworkX object, a Mermaid diagram, or a GraphQL schema.

🎨 The Artists (graphinate.renderers)

A suite of tools to visualize your graphs, from matplotlib plots to interactive Mermaid diagrams.

📡 The Broadcaster (graphinate.server)

Instantly serve your graph data as an interactive GraphQL API, ready for consumption by web applications.

⌨️ The Command Center (graphinate.cli)

A handy command-line tool to manage and interact with your graph definitions without writing boilerplate code.

Links

Quick Start

Install

Graphinate is available on PyPI:

pip install graphinate

or

uv add graphinate

To install with server support

pip install graphinate[server]

or

uv add graphinate[server] 

Graphinate officially supports Python >= 3.10.

Example

import graphinate

N: int = 8

# First Define a GraphModel instance.
# It will be used to hold the graph definitions
graph_model: graphinate.GraphModel = graphinate.model(name="Octagonal Graph")


# Register in the Graph Model the edges' supplier generator function
@graph_model.edge()
def edge():
    for i in range(N):
        yield {'source': i, 'target': i + 1}
    yield {'source': N, 'target': 0}


# Use the NetworkX Builder
builder = graphinate.builders.NetworkxBuilder(graph_model)

# build the NetworkX GraphRepresentation
# the output in this case is a nx.Graph instance
graph = builder.build()

# this supplied plot method uses matplotlib to display the graph
graphinate.matplotlib.plot(graph, with_edge_labels=True)

# or use the Mermaid Builder
builder = graphinate.builders.MermaidBuilder(graph_model)

# to create a Mermaid diagram
diagram: str = builder.build()

# and get Markdown or single page HTML to display it
mermaid_markdown: str = graphinate.mermaid.markdown(diagram)
mermaid_html: str = graphinate.mermaid.html(diagram, title=graph_model.name)

# or use the GraphQL Builder
builder = graphinate.builders.GraphQLBuilder(.graph_model)

# to create a Strawberry GraphQL schema
schema = builder.build()

# and serve it using Uvicorn web server
graphinate.graphql.server(schema)

CLI

For detailed information on the command-line interface, please see the CLI Usage Guide in the official documentation.

Gallery

Python Class AST

matplotlib

graph_ast

3D Force-Directed Animation

GitHub Repository

repo_graph

Web Links

Web Page Links

Development

For instructions on how to set up your development environment, run tests, and contribute to the project, please see the Development Guide in the official documentation.

Acknowledgements

For a list of the dependencies and tools that make Graphinate possible, please see the Acknowledgements page in the official documentation.


Alt


Work on my Machine

Copyright © 2023-2026 Eran Rivlis

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graphinate-0.15.1.tar.gz (2.6 MB view details)

Uploaded Source

Built Distribution

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

graphinate-0.15.1-py3-none-any.whl (121.3 kB view details)

Uploaded Python 3

File details

Details for the file graphinate-0.15.1.tar.gz.

File metadata

  • Download URL: graphinate-0.15.1.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for graphinate-0.15.1.tar.gz
Algorithm Hash digest
SHA256 eec52a3127ab9dc630a85ff55e5a4f063d7c697e14943185bca25690682cb5c1
MD5 2468128f4adfdaa58feda250f9baf199
BLAKE2b-256 894319403ced10f7d2567e3bc73973bfd151a6fc2849d7be2656bcbbbf69b368

See more details on using hashes here.

File details

Details for the file graphinate-0.15.1-py3-none-any.whl.

File metadata

  • Download URL: graphinate-0.15.1-py3-none-any.whl
  • Upload date:
  • Size: 121.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for graphinate-0.15.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a4d50d90c58dd9fac898e4c7127cce4ff9ac9fd2f84ead50ae3cd9093a49a5a7
MD5 23759102996fa084a7c46e934dee99f2
BLAKE2b-256 d703554b1bcb4e6193aba6bb15b4cf07f50e91f0d9d60f4a2ba05c6f8302a5bc

See more details on using hashes here.

Release history Release notifications | RSS feed

0.15.2

2 files

This release

0.15.1 This release

2 files

0.15.0

2 files

0.14.0

2 files

0.13.1

2 files

0.13.0

2 files

0.12.0

2 files

0.11.1

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.0

2 files

0.8.6

2 files

0.8.5

2 files

0.8.4

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.21

2 files

0.2.20

2 files

0.2.19

2 files

0.2.18

2 files

0.2.17

2 files

0.2.16

2 files

0.2.15

2 files

0.2.14

2 files

0.2.13

2 files

0.2.12

2 files

0.2.11

2 files

0.2.10

2 files

0.2.9

2 files

0.2.8

2 files

0.2.7

2 files

0.2.6

2 files

0.2.5

2 files

0.2.4

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

1 file

Supported by

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