File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " thoth-cli" ,
3- "version" : " 0.2.22 " ,
3+ "version" : " 0.2.23 " ,
44 "description" : " 𓅝 Astrological calculations from the command line. Swiss Ephemeris precision. Built for humans and agents." ,
55 "author" : " AKLO <aklo@aklolabs.com>" ,
66 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -1146,7 +1146,7 @@ program
11461146
11471147// Banner
11481148console . log ( chalk . dim ( '' ) ) ;
1149- console . log ( chalk . yellow ( ' 𓅝' ) + chalk . dim ( ' thoth-cli v0.2.22 ' ) ) ;
1149+ console . log ( chalk . yellow ( ' 𓅝' ) + chalk . dim ( ' thoth-cli v0.2.23 ' ) ) ;
11501150console . log ( chalk . dim ( '' ) ) ;
11511151
11521152program . parse ( ) ;
Original file line number Diff line number Diff line change 55𓅝 As above, so below. 𓅝
66"""
77
8- __version__ = "0.2.22 "
8+ __version__ = "0.2.23 "
Original file line number Diff line number Diff line change @@ -1625,7 +1625,7 @@ def tarot_draw(
16251625):
16261626 """Draw tarot cards with true randomness (cryptographic entropy)."""
16271627 try :
1628- from .tarot import draw_cards , SPREADS
1628+ from thoth_core .tarot import draw_cards , SPREADS
16291629
16301630 # If spread specified, use its count
16311631 if spread in SPREADS :
@@ -1649,7 +1649,7 @@ def tarot_card(
16491649):
16501650 """Look up a specific tarot card."""
16511651 try :
1652- from .tarot import get_card
1652+ from thoth_core .tarot import get_card
16531653
16541654 card = get_card (identifier )
16551655 if card is None :
@@ -1668,7 +1668,7 @@ def tarot_deck(
16681668):
16691669 """List tarot cards."""
16701670 try :
1671- from .tarot import get_deck
1671+ from thoth_core .tarot import get_deck
16721672
16731673 cards = get_deck (filter_type )
16741674 output_json ({
@@ -1686,7 +1686,7 @@ def tarot_deck(
16861686def tarot_spreads ():
16871687 """List available tarot spreads."""
16881688 try :
1689- from .tarot import SPREADS
1689+ from thoth_core .tarot import SPREADS
16901690
16911691 spreads = []
16921692 for key , spread in SPREADS .items ():
You can’t perform that action at this time.
0 commit comments