This commit is contained in:
nose
2025-11-25 22:19:36 -08:00
commit 79d4f1a09e
132 changed files with 11052 additions and 0 deletions

22
src/kaballah/__init__.py Normal file
View File

@@ -0,0 +1,22 @@
"""
Kaballah namespace - Tree of Life and Cube of Space.
Provides fluent query interface for:
- Tree of Life with Sephiroth and Paths
- Cube of Space with walls and areas
- Kabbalistic correspondences
Usage:
from tarot import kaballah
sephera = kaballah.Tree.sephera(1)
path = kaballah.Tree.path(11)
wall = kaballah.Cube.wall("North")
direction = kaballah.Cube.direction("North", "East")
"""
from .tree import Tree
from .cube import Cube
# Export classes for fluent access
__all__ = ["Tree", "Cube"]