Files
Jyotisha/references/open_source_sources/jaimini-tropical/run_jaimini.py
T
732642856 f83db2fac1 Enhance Jyotish validation and Jaimini modules
- add external validation reports and open-source comparison references

- integrate Jaimini arudha/graha pada, enhanced argala, and additional synastry kutas

- update skill docs and capability matrices

- add smoke tests for open-source integrations
2026-06-10 20:50:52 +08:00

17 lines
441 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env python3
"""Jaimini Tropical Astrology Engine — convenient entry point.
Usage:
python run_jaimini.py "1949-10-01" "15:00:00" "+8" "39.907" "116.397"
python run_jaimini.py "1949-10-01" "15:00:00" "+8" "39°5425″" "116°2350″" --name "My Chart"
"""
import sys
import os
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from jaimini.cli.main import main
if __name__ == '__main__':
main()