Files
tarot/src/kaballah/__init__.py
nose 79d4f1a09e k
2025-11-25 22:19:36 -08:00

23 lines
529 B
Python

"""
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"]