Benign python Download

tarrotsimplified 0.2.0

“Offline tarot card interpretations as a Python library.”

Registry package lists one maintainerRelease published within seven days

Evidence

English function-word token "for" __init__.py · lines 16–17
16:23 # wands / cups / swords / pentacles, or None for majors
17 number: int # 0-21 majors; 1-14 minors (Ace=1, Page=11, Knight=12, Queen=13
Parses JSON data with Python __init__.py · lines 18–33
18:31s", "no", or "maybe"
19 guidance: str # the reading
20
21
22def _load() -> list[Card]:
23 raw = json.loads(
24 resources.files("tarrotsimplified.data").joinpath("cards.json").read_text("utf-8")
25 )
8 lines
References an answer or ground-truth path __init__.py · lines 52–55
52:16n: str | None = None) -> dict:
53 """Draw one card as a yes/no answer. Returns {question, card, answer, guidance}."""
54 c = random.choice(_CARDS)
55 return {"question": question, "card": c, "answ
Python not-in membership check __init__.py · lines 66–70
66:20 spread. Each result is {'position': str, 'card': Card}."""
67 if name not in SPREADS:
68 raise KeyError(f"Unknown spread {name!r}. Try: {', '.join(SPREADS)}")
69 positions = SPREADS[name]
70 cards = draw(le
Declares Python license expression METADATA · lines 1–17
1Metadata-Version: 2.5
2Name: tarrotsimplified
3Version: 0.2.0
4Summary: Offline tarot card interpretations as a Python library.
5Project-URL: Homepage, https://github.com/yourname/tarrotsimplified
6Author: Vikkas Pareek
7License-Expression: MIT
8License-File: LICENSE
9Keywords: cards,divination,tarot
10Classifier: License :: OSI Approved :: MIT License
11Classifier: Programming Language :: Python :: 3
12Requires-Python: >=3.10
13Description-Content-Type: text/markdown
14
15# tarrotsimplified
16
17Offline tarot readings as a Python library. All 78 cards with a Yes/No answer and personal guidance ship in

No evidence locations were recorded for this file. Raw result

Keyboard shortcuts on this page: j for the next sample, k for the previous one, x to go back to the feed, d to download the original bytes, r to re-queue the sample for analysis.