type-bridge
Installation
SKILL.md
type-bridge Python ORM for TypeDB
type-bridge is a Pythonic ORM for TypeDB that provides type-safe abstractions over TypeQL.
Quick Start
from type_bridge import (
Entity, Relation, Role, String, Integer, Double, Boolean,
Flag, Key, Unique, Card, TypeFlags, Database, SchemaManager
)
# 1. Define attribute types (reusable across entities)
class Name(String):
pass
class Email(String):
pass