A framework for transforming tabular (CSV, SQL) and hierarchical data (JSON, XML) into property graphs and ingesting them into graph databases (ArangoDB, Neo4j, TigerGraph). Features automatic PostgreSQL schema inference.
Project description
GraFlo 
A framework for transforming tabular (CSV, SQL), hierarchical (JSON, XML), and RDF/SPARQL data into property graphs and ingesting them into graph databases (ArangoDB, Neo4j, TigerGraph, FalkorDB, Memgraph).
Package Renamed: This package was formerly known as
graphcast.
Overview
graflo reads data from multiple source types, transforms it according to a declarative schema, and writes property-graph vertices and edges to a target graph database. The pipeline is:
Pattern (where data lives) --> DataSource (how to read it) --> Resource (what to extract) --> GraphContainer --> Target DB
Supported sources
| Source type | Pattern | DataSource | Schema inference |
|---|---|---|---|
| CSV / JSON / JSONL / Parquet files | FilePattern |
FileDataSource |
manual |
| PostgreSQL tables | TablePattern |
SQLDataSource |
automatic (3NF with PK/FK) |
RDF files (.ttl, .rdf, .n3) |
SparqlPattern |
RdfFileDataSource |
automatic (OWL/RDFS ontology) |
| SPARQL endpoints (Fuseki, ...) | SparqlPattern |
SparqlEndpointDataSource |
automatic (OWL/RDFS ontology) |
| REST APIs | -- | APIDataSource |
manual |
| In-memory (list / DataFrame) | -- | InMemoryDataSource |
manual |
Supported targets
ArangoDB, Neo4j, TigerGraph, FalkorDB, Memgraph -- same API for all.
Features
- Declarative graph transformation: Define vertex/edge structures, indexes, weights, and transforms in YAML or Python dicts. Resources describe how each data source maps to vertices and edges.
- Schema inference: Automatically generate schemas from PostgreSQL 3NF databases (PK/FK heuristics) or from OWL/RDFS ontologies (class/property introspection).
- RDF / SPARQL ingestion: Read
.ttlfiles via rdflib or query SPARQL endpoints (e.g. Apache Fuseki).owl:Classmaps to vertices,owl:ObjectPropertyto edges,owl:DatatypePropertyto vertex fields. - Typed fields: Vertex fields and edge weights support types (
INT,FLOAT,STRING,DATETIME,BOOL) for validation and database-specific optimisation. - Parallel batch processing: Configurable batch sizes and multi-core execution.
- Database-agnostic: Single API targeting ArangoDB, Neo4j, TigerGraph, FalkorDB, and Memgraph. Source data from PostgreSQL, SPARQL endpoints, files, APIs, or in-memory objects.
Documentation
Full documentation is available at: growgraph.github.io/graflo
Installation
pip install graflo
# With RDF / SPARQL support (adds rdflib + SPARQLWrapper)
pip install graflo[sparql]
Usage Examples
Simple ingest
from suthing import FileHandle
from graflo import Schema, Caster, Patterns
from graflo.db.connection.onto import ArangoConfig
schema = Schema.from_dict(FileHandle.load("schema.yaml"))
# Option 1: Load config from docker/arango/.env (recommended)
conn_conf = ArangoConfig.from_docker_env()
# Option 2: Load from environment variables
# Set: ARANGO_URI, ARANGO_USERNAME, ARANGO_PASSWORD, ARANGO_DATABASE
conn_conf = ArangoConfig.from_env()
# Option 3: Load with custom prefix (for multiple configs)
# Set: USER_ARANGO_URI, USER_ARANGO_USERNAME, USER_ARANGO_PASSWORD, USER_ARANGO_DATABASE
user_conn_conf = ArangoConfig.from_env(prefix="USER")
# Option 4: Create config directly
# conn_conf = ArangoConfig(
# uri="http://localhost:8535",
# username="root",
# password="123",
# database="mygraph", # For ArangoDB, 'database' maps to schema/graph
# )
# Note: If 'database' (or 'schema_name' for TigerGraph) is not set,
# Caster will automatically use Schema.general.name as fallback
from graflo.util.onto import FilePattern
import pathlib
# Create Patterns with file patterns
patterns = Patterns()
patterns.add_file_pattern(
"work",
FilePattern(regex="\Sjson$", sub_path=pathlib.Path("./data"), resource_name="work")
)
# Or use resource_mapping for simpler initialization
# patterns = Patterns(
# _resource_mapping={
# "work": "./data/work.json",
# }
# )
schema.fetch_resource()
from graflo.hq.caster import IngestionParams
from graflo.hq import GraphEngine
# Option 1: Use GraphEngine for schema definition and ingestion (recommended)
engine = GraphEngine()
ingestion_params = IngestionParams(
recreate_schema=False, # Set to True to drop and redefine schema (script halts if schema exists)
# max_items=1000, # Optional: limit number of items to process
# batch_size=10000, # Optional: customize batch size
)
engine.define_and_ingest(
schema=schema,
target_db_config=conn_conf, # Target database config
patterns=patterns, # Source data patterns
ingestion_params=ingestion_params,
recreate_schema=False, # Set to True to drop and redefine schema (script halts if schema exists)
)
# Option 2: Use Caster directly (schema must be defined separately)
# from graflo.hq import GraphEngine
# engine = GraphEngine()
# engine.define_schema(schema=schema, target_db_config=conn_conf, recreate_schema=False)
#
# caster = Caster(schema)
# caster.ingest(
# target_db_config=conn_conf,
# patterns=patterns,
# ingestion_params=ingestion_params,
# )
PostgreSQL Schema Inference
from graflo.hq import GraphEngine
from graflo.db.connection.onto import PostgresConfig, ArangoConfig
from graflo import Caster
from graflo.onto import DBType
# Connect to PostgreSQL
postgres_config = PostgresConfig.from_docker_env() # or PostgresConfig.from_env()
# Create GraphEngine and infer schema from PostgreSQL 3NF database
# Connection is automatically managed inside infer_schema()
engine = GraphEngine(target_db_flavor=DBType.ARANGO)
schema = engine.infer_schema(
postgres_config,
schema_name="public", # PostgreSQL schema name
)
# Define schema in target database (optional, can also use define_and_ingest)
target_config = ArangoConfig.from_docker_env()
engine.define_schema(
schema=schema,
target_db_config=target_config,
recreate_schema=False,
)
# Use the inferred schema with Caster for ingestion
caster = Caster(schema)
# ... continue with ingestion
RDF / SPARQL Ingestion
from pathlib import Path
from graflo.hq import GraphEngine
from graflo.db.connection.onto import ArangoConfig
engine = GraphEngine()
# Infer schema from an OWL/RDFS ontology file
ontology = Path("ontology.ttl")
schema = engine.infer_schema_from_rdf(source=ontology)
# Create data-source patterns (reads a local .ttl file per rdf:Class)
patterns = engine.create_patterns_from_rdf(source=ontology)
# Or point at a SPARQL endpoint instead:
# from graflo.db.connection.onto import SparqlEndpointConfig
# sparql_cfg = SparqlEndpointConfig(uri="http://localhost:3030", dataset="mydata")
# patterns = engine.create_patterns_from_rdf(
# source=ontology,
# endpoint_url=sparql_cfg.query_endpoint,
# )
target = ArangoConfig.from_docker_env()
engine.define_and_ingest(schema=schema, target_db_config=target, patterns=patterns)
Development
To install requirements
git clone git@github.com:growgraph/graflo.git && cd graflo
uv sync --dev
Tests
Test databases
Quick Start: To start all test databases at once, use the convenience scripts from the docker folder:
cd docker
./start-all.sh # Start all services
./stop-all.sh # Stop all services
./cleanup-all.sh # Remove containers and volumes
Individual Services: To start individual databases, navigate to each database folder and run:
Spin up Arango from arango docker folder by
docker-compose --env-file .env up arango
Neo4j from neo4j docker folder by
docker-compose --env-file .env up neo4j
TigerGraph from tigergraph docker folder by
docker-compose --env-file .env up tigergraph
FalkorDB from falkordb docker folder by
docker-compose --env-file .env up falkordb
Memgraph from memgraph docker folder by
docker-compose --env-file .env up memgraph
and Apache Fuseki from fuseki docker folder by
docker-compose --env-file .env up fuseki
To run unit tests
pytest test
Note: Tests require external database containers (ArangoDB, Neo4j, TigerGraph, FalkorDB, Memgraph, Fuseki) to be running. CI builds intentionally skip test execution. Tests must be run locally with the required database images started (see Test databases section above).
Requirements
- Python 3.11+ (Python 3.11 and 3.12 are officially supported)
- python-arango
- sqlalchemy>=2.0.0 (for PostgreSQL and SQL data sources)
- rdflib>=7.0.0 + SPARQLWrapper>=2.0.0 (optional, install with
pip install graflo[sparql])
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Project details
Release history Release notifications | RSS feed
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 graflo-1.6.0.tar.gz.
File metadata
- Download URL: graflo-1.6.0.tar.gz
- Upload date:
- Size: 222.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3597e17f21804fbb93851331154d3398d5d46c374572c8b28d3c3ada760529b3
|
|
| MD5 |
138e532cde5b4541a5e27056e2afde48
|
|
| BLAKE2b-256 |
33876348945251450ece1105a82edf50a686ed597f30b5a7d3ccb9c51c4df004
|
File details
Details for the file graflo-1.6.0-py3-none-any.whl.
File metadata
- Download URL: graflo-1.6.0-py3-none-any.whl
- Upload date:
- Size: 265.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99d69196a6a2e31691e9b86901f394084ef4269bcf231fcabe74dcf4d5a77be3
|
|
| MD5 |
9ee7bca127a63e4b43c4b8b38a87fc80
|
|
| BLAKE2b-256 |
60198d6173f8a95413407097a2eb08539139b9bfb88b7376286d9312405344d6
|