Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 431 Bytes
00ae2e3 0f7a0e6 00ae2e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import json
def get_chapter_order_from_pancha_sooktham():
return {
"Purusha Suktam": 1,
"Narayana Suktam": 2,
"Vishnu Suktam": 3,
"Sri Suktam": 4,
"Bhu Suktam": 5,
"Neela Suktam": 6,
}
def get_pancha_sooktham_chapters() -> list[str]:
"""
Get a list of chapter names from pancha sooktham
"""
return sorted(get_chapter_order_from_pancha_sooktham().keys())
|