-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·32 lines (24 loc) · 933 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
""" The REV app for reading and managing scripture from the Revised English
Version bible
Currently in it's infancy it will eventually be a command line utility for
quick bible lookups as well as saving and exporting sections of scripture.
A command line style usage should be sufficient with a minimum of
> help
commands:
help - display this help screen
quit - exit the program
books - list books of the bible
find SEARCH_PARAM - search the bible for a word or phrase
lookup BIBLE_REF - find a section of scripture using a standard bible ref
(i.e. Jn 3:16)
"""
from Rev_Data import RevData
if __name__ == '__main__':
data = RevData()
print('Data loaded!')
# print(data.bible.books)
# print(data.bible.chapters('Genesis'))
# print(data.bible.verses('Genesis', 1))
# print(data.bible.appendices)
# print(data.bible.appendix(data.bible.appendices[0]))