k
This commit is contained in:
22
src/kaballah/__init__.py
Normal file
22
src/kaballah/__init__.py
Normal 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"]
|
||||
Reference in New Issue
Block a user