23 lines
529 B
Python
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"]
|